Skip to content

Instantly share code, notes, and snippets.

@CRUZEAAKASH
Last active March 20, 2022 16:17
Show Gist options
  • Save CRUZEAAKASH/ac47f6f9e45a3136321b99c69f8f0796 to your computer and use it in GitHub Desktop.
Save CRUZEAAKASH/ac47f6f9e45a3136321b99c69f8f0796 to your computer and use it in GitHub Desktop.
Sample Dockerfile to run HelloWorld Java Application
FROM alpine:latest
RUN apk --update add openjdk11-jre
ADD helloWorld.class helloWorld.class
ENTRYPOINT ["java", "-Djava.security.egd=file:/dev/./urandom", "helloWorld"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment