From 1a30692b358c8bc5ac189b4b502bef88123cf1ee Mon Sep 17 00:00:00 2001 From: LukasJuraczka Date: Thu, 29 Jan 2026 16:55:08 +0100 Subject: [PATCH] Dockerfile parent pom bauen --- server-app/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/server-app/Dockerfile b/server-app/Dockerfile index a33ffb1..ab8e166 100644 --- a/server-app/Dockerfile +++ b/server-app/Dockerfile @@ -1,4 +1,5 @@ FROM maven:3.9-eclipse-temurin-21 AS build +COPY . /productdefinitions WORKDIR /productdefinitions RUN git clone -b feature/Produkte --single-branch https://bitbucket.org/omds/omdsservicedefinitions.git /tmp/lib \ @@ -7,7 +8,7 @@ RUN git clone -b feature/Produkte --single-branch https://bitbucket.org/omds/omd COPY src ./src RUN ls -la -COPY . . + RUN mvn clean package -DskipTests