diff --git a/Dockerfile.fat b/Dockerfile.fat index 14cb9d535..c96cf6313 100644 --- a/Dockerfile.fat +++ b/Dockerfile.fat @@ -6,12 +6,12 @@ FROM gradle:8.13-jdk21 AS build # COPY gradlew . # COPY gradle gradle/ -# Copy the entire project to the working directory -COPY . . - # Set the working directory WORKDIR /app +# Copy the entire project to the working directory +COPY . . + RUN ./gradle build -x spotlessApply -x spotlessCheck -x test -x sonarqube || return 0 # Build the application with DOCKER_ENABLE_SECURITY=false