Files
docker-machine/Dockerfile
David Gageot 86f95753c4 Upgrade to go 1.5.3
Signed-off-by: David Gageot <david@gageot.net>
2016-01-14 07:11:03 +01:00

14 lines
336 B
Docker

FROM golang:1.5.3
RUN go get github.com/golang/lint/golint \
github.com/mattn/goveralls \
golang.org/x/tools/cover \
github.com/tools/godep \
github.com/aktau/github-release
ENV USER root
WORKDIR /go/src/github.com/docker/machine
ADD . /go/src/github.com/docker/machine
RUN mkdir bin