conf env de dev

This commit is contained in:
2026-05-24 10:07:47 +02:00
parent e6d06cb82f
commit 0fc87ed472
4 changed files with 54 additions and 3 deletions
+10
View File
@@ -0,0 +1,10 @@
FROM eclipse-temurin:25-jdk-alpine
WORKDIR /app
# Pre-download dependencies (cached layer — rebuilt only if build.gradle changes)
COPY gradlew settings.gradle build.gradle ./
COPY gradle ./gradle
RUN chmod +x gradlew && ./gradlew dependencies --no-daemon -q
# Sources are mounted at runtime via docker-compose volume
ENTRYPOINT ["sh", "gradlew", "bootRun", "--no-daemon"]