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:
Aleksa Sarai 2016-01-25 19:40:21 +11:00
parent 6588968fb5
commit c2c561d804
1 changed files with 1 additions and 1 deletions

View File

@ -9,5 +9,5 @@ RUN go get github.com/golang/lint/golint \
ENV USER root
WORKDIR /go/src/github.com/docker/machine
ADD . /go/src/github.com/docker/machine
COPY . /go/src/github.com/docker/machine
RUN mkdir bin