Skip to content

Instantly share code, notes, and snippets.

@tyrcho
Created February 6, 2015 08:48
Show Gist options
  • Save tyrcho/8983bd51b990912849ab to your computer and use it in GitHub Desktop.
Save tyrcho/8983bd51b990912849ab to your computer and use it in GitHub Desktop.
activiti explorer in tomcat 7 - docker
FROM tomcat:7
RUN curl -SL https://github.com/Activiti/Activiti/releases/download/activiti-5.17.0/activiti-5.17.0.zip -o activiti.zip \
&& unzip activiti.zip \
&& rm activiti.zip \
&& cp activiti-5.17.0/wars/activiti-explorer.war webapps \
&& rm -rf activiti-5.17.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment