build as name change

This commit is contained in:
Alexandros Mandilaras 2024-02-22 09:32:38 +02:00
parent 5bb31d0a59
commit 530623b931
2 changed files with 2 additions and 2 deletions

View File

@ -31,6 +31,6 @@ WORKDIR /app
ARG PROFILE
COPY --from=MAVEN_BUILD /build/web/target/web-1.0-SNAPSHOT.jar /app.jar
COPY --from=build-stage /build/web/target/web-1.0-SNAPSHOT.jar /app.jar
ENTRYPOINT ["java","-Djava.security.egd=file:/dev/./urandom" ,"-Dspring.profiles.active=${PROFILE}","-jar","/app.jar"]

View File

@ -28,5 +28,5 @@ WORKDIR /app
ARG PROFILE
ARG REVISION
COPY --from=MAVEN_BUILD /build/web/target/web-1.0-SNAPSHOT.jar /app/app.jar
COPY --from=build-stage /build/web/target/web-1.0-SNAPSHOT.jar /app/app.jar
ENTRYPOINT ["java", "-Djava.security.egd=file:/dev/./urandom", "-Dspring.profiles.active=${PROFILE}", "-Dspring.config.additional-location=/files/config/", "-cp", "/app/app.jar", "-Dloader.path=/files/repo-jars", "org.springframework.boot.loader.PropertiesLauncher"]