Created
May 5, 2018 18:21
-
-
Save mistergamarra/1230a4b38d68a8867bfa89b8f6bc1f1e to your computer and use it in GitHub Desktop.
Dockerfile
This file contains 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 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