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