docker: fix invalid instruction in Dockerfile not using trailing slash for files destination directory

> If the source is a file, and the destination doesn't end with a trailing slash, the source file will be written to the destination path as a file.
~ https://docs.docker.com/reference/dockerfile/#destination

Signed-off-by: Jakub Meysner <git@jakubmeysner.com>
pull/642/head
Jakub Meysner 8 months ago
parent 8a43a75209
commit af44e1ee35
No known key found for this signature in database

@ -36,7 +36,7 @@ COPY Makefile Makefile
RUN make androidsdk RUN make androidsdk
# Preload Gradle # Preload Gradle
COPY android/gradlew android/build.gradle android COPY android/gradlew android/build.gradle android/
COPY android/gradle android/gradle COPY android/gradle android/gradle
RUN chmod 755 android/gradlew && \ RUN chmod 755 android/gradlew && \

Loading…
Cancel
Save