fix jar name

This commit is contained in:
Alexandros Mandilaras 2024-02-21 11:12:39 +02:00
parent 9870ad1ced
commit 44f9be6bbf
1 changed files with 2 additions and 2 deletions

View File

@ -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"]
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"]