From 08cc071615def963cfad394cf8b2e3daa4d0b7be Mon Sep 17 00:00:00 2001 From: ds Date: Thu, 26 Mar 2026 00:15:28 +0000 Subject: [PATCH] Add git clone repo --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index edc01ca..af9d2f0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,10 @@ FROM maven:3.9.14-eclipse-temurin-21 AS builder WORKDIR /usr/src/app -COPY . /usr/src/app +#COPY . /usr/src/app + +RUN git clone https://gitea.dev.osnawiki.de/ds/springhello/ . + RUN mvn compile FROM maven:3.9.14-eclipse-temurin-21