Files
docker-machine/Dockerfile
David Gageot 27e572113f FIX #3051 Use golang 1.6
Signed-off-by: David Gageot <david@gageot.net>
2016-02-18 08:51:30 +01:00

12 lines
221 B
Docker

FROM golang:1.6
RUN go get github.com/golang/lint/golint \
github.com/mattn/goveralls \
golang.org/x/tools/cover
ENV USER root
WORKDIR /go/src/github.com/docker/machine
COPY . ./
RUN mkdir bin