Skip to content
This repository has been archived by the owner on Sep 26, 2021. It is now read-only.

Commit

Permalink
Dockerfile: use COPY
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
cyphar committed Jan 25, 2016
1 parent 6588968 commit c2c561d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit c2c561d

Please sign in to comment.