Skip to content

Instantly share code, notes, and snippets.

@alibenmessaoud
Created August 10, 2020 22:51
Show Gist options
  • Save alibenmessaoud/633abc75beb201dc636eceb52011ed13 to your computer and use it in GitHub Desktop.
Save alibenmessaoud/633abc75beb201dc636eceb52011ed13 to your computer and use it in GitHub Desktop.
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