From 8ba33f25b4891c828232e1782fbab81647886863 Mon Sep 17 00:00:00 2001 From: Fabio Formosa Date: Sat, 13 Jul 2024 16:00:44 +0200 Subject: [PATCH] fixed copy path in the Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7058a04..64c6968 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,7 +25,7 @@ FROM openjdk:11-jre-slim WORKDIR /app # Copy the JAR file from the build stage -COPY --from=build /app/quartz-manager-parent/quartz-manager-web-showcase/target/*.jar app.jar +COPY --from=build /app/quartz-manager-parent/quartz-manager-web-showcase/target/*-SNAPSHOT.jar app.jar # Expose the application port EXPOSE 8080