From 44f9be6bbfeab27335cf6c0723189e6d314f6eb4 Mon Sep 17 00:00:00 2001 From: amandilaras Date: Wed, 21 Feb 2024 11:12:39 +0200 Subject: [PATCH] fix jar name --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 23d5a33..72b1fcb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -31,6 +31,6 @@ ARG REVISION ENV SERVER_PORT=8080 EXPOSE ${SERVER_PORT} -COPY --from=build-stage /build/web/target/file-transformer-docx-${REVISION}.jar /app/file-transformer-docx.jar +COPY --from=build-stage /build/web/target/file-transformer-document-web-${REVISION}.jar /app/file-transformer-document-web.jar -ENTRYPOINT ["java","-Dspring.config.additional-location=file:/config/","-Dspring.profiles.active=${PROFILE}","-Djava.security.egd=file:/dev/./urandom","-jar","/app/file-transformer-docx.jar"] \ No newline at end of file +ENTRYPOINT ["java","-Dspring.config.additional-location=file:/config/","-Dspring.profiles.active=${PROFILE}","-Djava.security.egd=file:/dev/./urandom","-jar","/app/file-transformer-document-web.jar"] \ No newline at end of file