From 211350f8a4e74ccffd24074f0e311313f332a934 Mon Sep 17 00:00:00 2001 From: Peter Siegmund Date: Sun, 20 Oct 2024 20:05:00 +0200 Subject: [PATCH] fix dockerfile Signed-off-by: Peter Siegmund --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2bbcb66..2566473 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,7 @@ COPY --chown=app ./mvnw ./pom.xml ./app.json ./ COPY --chown=app ./src ./src # Build the production package -RUN ./mvnw --batch-mode clean verify -DskipTests +RUN ./mvnw --batch-mode clean verify -Pproduction -DskipTests # Running stage: the part that is used for running the application FROM eclipse-temurin:21-jre-noble