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>
14 lines
337 B
Docker
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
|