Update Dockerfile.fat

This commit is contained in:
Ludy 2025-04-02 19:34:49 +02:00 committed by GitHub
parent 3d19de2122
commit fb42142503
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -6,12 +6,12 @@ FROM gradle:8.13-jdk21 AS build
# COPY gradlew . # COPY gradlew .
# COPY gradle gradle/ # COPY gradle gradle/
# Copy the entire project to the working directory
COPY . .
# Set the working directory # Set the working directory
WORKDIR /app WORKDIR /app
# Copy the entire project to the working directory
COPY . .
RUN ./gradle build -x spotlessApply -x spotlessCheck -x test -x sonarqube || return 0 RUN ./gradle build -x spotlessApply -x spotlessCheck -x test -x sonarqube || return 0
# Build the application with DOCKER_ENABLE_SECURITY=false # Build the application with DOCKER_ENABLE_SECURITY=false