From 0c488e960e63619d535f7ce64bcc31c2b10605eb Mon Sep 17 00:00:00 2001 From: Anthony Stirling <77850077+Frooodle@users.noreply.github.com> Date: Sat, 29 Jul 2023 00:51:28 +0100 Subject: [PATCH] Update Dockerfile-do --- Dockerfile-do | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile-do b/Dockerfile-do index f548fbef7..223f30f9e 100644 --- a/Dockerfile-do +++ b/Dockerfile-do @@ -7,6 +7,9 @@ WORKDIR /app # Copy everything into the current directory in the image COPY . . +# Give execution permissions to gradlew +RUN chmod +x ./gradlew + # Run the build RUN ./gradlew build