From 864e6d2559c499dae28a73a4846906f446b26e31 Mon Sep 17 00:00:00 2001 From: Ernesto Rodriguez Ortiz Date: Wed, 28 Jun 2017 16:30:19 -0400 Subject: [PATCH] Replace ADD with COPY in Dockerfile. Ref: issue #755 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d377280d..d4dd1362 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,5 +10,5 @@ RUN apt-get install nodejs build-essential -y RUN apt-get install binutils libproj-dev gdal-bin -y RUN pip3 install -r requirements.txt RUN npm install gulp -g -ADD . /code/ +COPY . /code/ RUN apt-get clean