From 802482f8a9389af300f24954714f80dbb7d22e02 Mon Sep 17 00:00:00 2001 From: Amandus Butzer Date: Thu, 15 Feb 2024 17:58:48 +0100 Subject: [PATCH] fix(docker): remove -P buildFatJar buildFatJar is the default --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1c9f26b9a2..db8304eff8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ COPY pom.xml /tmp/ors/pom.xml COPY ors-report-aggregation /tmp/ors/ors-report-aggregation # Build the project and ignore the report aggregation module as not needed for the API -RUN mvn clean package -DskipTests -pl '!ors-report-aggregation' -P buildFatJar +RUN mvn clean package -DskipTests -pl '!ors-report-aggregation' # Copy the example config files to the build folder COPY ./ors-config.yml /tmp/ors/example-ors-config.yml