Files
docker-machine/Dockerfile
Aleksa Sarai c2c561d804 Dockerfile: use COPY
ADD is far too magical, and we should be steering people away from it,
so using it in an official Docker project sends a mixed message.

Signed-off-by: Aleksa Sarai <asarai@suse.com>
2016-01-25 19:40:21 +11:00

14 lines
337 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
COPY . /go/src/github.com/docker/machine
RUN mkdir bin