mirror of https://github.com/docker/docs.git
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>
This commit is contained in:
parent
6588968fb5
commit
c2c561d804
|
@ -9,5 +9,5 @@ RUN go get github.com/golang/lint/golint \
|
||||||
ENV USER root
|
ENV USER root
|
||||||
WORKDIR /go/src/github.com/docker/machine
|
WORKDIR /go/src/github.com/docker/machine
|
||||||
|
|
||||||
ADD . /go/src/github.com/docker/machine
|
COPY . /go/src/github.com/docker/machine
|
||||||
RUN mkdir bin
|
RUN mkdir bin
|
||||||
|
|
Loading…
Reference in New Issue