Dockerfile: Switch from ADD to COPY
authorFredrik Fornwall <fredrik@fornwall.net>
Thu, 2 Feb 2017 00:35:53 +0000 (01:35 +0100)
committerFredrik Fornwall <fredrik@fornwall.net>
Thu, 2 Feb 2017 00:35:53 +0000 (01:35 +0100)
scripts/Dockerfile

index 2c75046..102b1ed 100644 (file)
@@ -10,8 +10,8 @@ FROM ubuntu:16.10
 ENV LANG C.UTF-8
 
 # Needed for setup:
-ADD ./setup-ubuntu.sh /tmp/setup-ubuntu.sh
-ADD ./setup-android-sdk.sh /tmp/setup-android-sdk.sh
+COPY ./setup-ubuntu.sh /tmp/setup-ubuntu.sh
+COPY ./setup-android-sdk.sh /tmp/setup-android-sdk.sh
 
 # Setup needed packages and the Android SDK and NDK:
 RUN apt-get update && \