Created
August 10, 2020 22:51
-
-
Save alibenmessaoud/633abc75beb201dc636eceb52011ed13 to your computer and use it in GitHub Desktop.
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 openjdk:8-jdk-alpine | |
| COPY --from=MAVEN_TOOL_CHAIN /tmp/target/io-app-service*.jar app.jar | |
| ENV JAVA_OPTS="" | |
| EXPOSE 8080 | |
| ENTRYPOINT exec java $JAVA_OPTS -Djava.security.egd=file:/dev/./urandom -jar /app.jar |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment