Skip to content

Instantly share code, notes, and snippets.

@ericzumba
Created August 8, 2016 19:51
Show Gist options
  • Save ericzumba/40093379c98eadc0d3924a5502fc3387 to your computer and use it in GitHub Desktop.
Save ericzumba/40093379c98eadc0d3924a5502fc3387 to your computer and use it in GitHub Desktop.
simple java dockerfile
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