From cff6fdaface39b15a6664462c21111b9b2541ab7 Mon Sep 17 00:00:00 2001 From: Andreas Svanberg <andreass@dsv.su.se> Date: Tue, 25 Feb 2025 12:49:16 +0100 Subject: [PATCH] Add new Maven module to the Docker build --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index ac53fd07f3..acf3c889a3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,12 +12,14 @@ COPY core/pom.xml core/pom.xml COPY view/pom.xml view/pom.xml COPY war/pom.xml war/pom.xml COPY daisy-integration/pom.xml daisy-integration/pom.xml +COPY test-data/pom.xml test-data/pom.xml COPY api/src/ api/src/ COPY core/src/ core/src/ COPY view/src/ view/src/ COPY war/src/ war/src/ COPY daisy-integration/src/ daisy-integration/src/ +COPY test-data/src/ test-data/src/ RUN ./mvnw package \ --define skipTests \