Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mistergamarra/1230a4b38d68a8867bfa89b8f6bc1f1e to your computer and use it in GitHub Desktop.
Save mistergamarra/1230a4b38d68a8867bfa89b8f6bc1f1e to your computer and use it in GitHub Desktop.
Dockerfile
FROM java:latest
EXPOSE 8090
ADD app.jar myApp.jar
ENTRYPOINT ["java","-jar","myApp.jar"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment