Skip to content

Commit f642bde

Browse files
committed
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 <[email protected]>
1 parent 7ee57ee commit f642bde

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docker/DockerFile.amd64-build

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ COPY Makefile Makefile
3636
RUN make androidsdk
3737

3838
# Preload Gradle
39-
COPY android/gradlew android/build.gradle android
39+
COPY android/gradlew android/build.gradle android/
4040
COPY android/gradle android/gradle
4141

4242
RUN chmod 755 android/gradlew && \

0 commit comments

Comments
 (0)