Created
August 8, 2016 19:51
-
-
Save ericzumba/40093379c98eadc0d3924a5502fc3387 to your computer and use it in GitHub Desktop.
simple java dockerfile
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 java:8-alpine | |
ARG ARTIFACT | |
WORKDIR /vivareal | |
COPY $ARTIFACT example.jar | |
COPY scripts/run run | |
ENTRYPOINT ["/vivareal/run"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment