From a6d06e6873b224dc56a5b60e9142503c3bc13204 Mon Sep 17 00:00:00 2001 From: Liam Date: Sun, 14 Apr 2024 17:13:12 +0100 Subject: [PATCH] maybe make building faster in the ci? --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c37e661..9b9ff94 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ WORKDIR /home/container COPY . . # Build the jar -RUN mvn package -q -DskipTests +RUN mvn package -q -Dmaven.test.skip -DskipTests -T2C # Make port 80 available to the world outside this container EXPOSE 80