Created
October 27, 2023 14:46
-
-
Save isaacssemugenyi/aefebb1808111714eb3869d87d0ec32d to your computer and use it in GitHub Desktop.
Stage for the java JDK
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM eclipse-temurin:17-jdk-alpine as prod | |
RUN mkdir /app | |
COPY --from=builder /app/target/*.jar /app/app.jar | |
ENV SERVER_PORT=6060 | |
WORKDIR /app | |
EXPOSE 6060 | |
ENTRYPOINT ["java","-jar","/app.jar"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment