Dockerfile aktualisiert

This commit is contained in:
ds
2026-03-26 00:20:31 +00:00
parent a7520b365d
commit 9eb2f619ab
+3 -3
View File
@@ -6,14 +6,14 @@ WORKDIR /usr/src/app
RUN git clone https://gitea.dev.osnawiki.de/ds/springhello/
RUN mvn compile
RUN cd springhello && mvn compile
FROM maven:3.9.14-eclipse-temurin-21
WORKDIR /usr/src/app
COPY --from=builder /usr/src/app/* .
WORKDIR /usr/src/app/springhello
EXPOSE 8080
ENTRYPOINT ["mvn"]