Skip to content

Instantly share code, notes, and snippets.

@goindwalia
Created August 11, 2015 12:01
Show Gist options
  • Save goindwalia/2ee7674f5342d22debcf to your computer and use it in GitHub Desktop.
Save goindwalia/2ee7674f5342d22debcf to your computer and use it in GitHub Desktop.
Dockerfile for maven
FROM maven:3.2-jdk-7-onbuild
CMD ["do-something-with-built-packages"]
COPY . /usr/src/app
RUN mvn package
CMD["/distribution/target/project-1.0/bin/project run"]
EXPOSE 7070
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment