From c2c561d804782c53af8c2c9719417cc4cd0546c2 Mon Sep 17 00:00:00 2001 From: Aleksa Sarai Date: Mon, 25 Jan 2016 19:40:21 +1100 Subject: [PATCH] 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 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9b22204db2..a869f5bfd2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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