fixed target-path at docker container

This commit is contained in:
Luc Weinbrecht
2022-05-04 17:42:10 +02:00
parent 98d67d6374
commit f3b41a92f1
2 changed files with 2 additions and 2 deletions

View File

@@ -10,7 +10,7 @@ RUN mvn -B package
FROM openjdk:11-jre-slim-buster
COPY --from=build ../target/loan-agreement.jar .
COPY --from=build ./target/loan-agreement.jar .
EXPOSE 8080

View File

@@ -10,7 +10,7 @@ RUN mvn -B package
FROM openjdk:11-jre-slim-buster
COPY --from=build ../target/recommendation.jar .
COPY --from=build ./target/recommendation.jar .
EXPOSE 8081