From 7e6629441e7d11120669b42c36d92542a140305f Mon Sep 17 00:00:00 2001 From: Hermes Agent Date: Wed, 10 Jun 2026 11:54:58 +0200 Subject: [PATCH] fix: also skip frontend tests in Docker Maven stage Maven build stage has no Node/npm, so -DskipFrontendTests=true is needed alongside -DskipFrontend=true --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 372c97c..642f2f3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,7 +16,7 @@ COPY pom.xml ./ COPY src ./src # Copy the built frontend into the source tree so maven-resources-plugin picks it up COPY --from=frontend /build/dist ./frontend/dist/ -RUN mvn package -q -DskipFrontend=true +RUN mvn package -q -DskipFrontend=true -DskipFrontendTests=true # ─── 3. Runtime ────────────────────────────────── FROM eclipse-temurin:21-jre-alpine