Skip to content

Instantly share code, notes, and snippets.

View zenojunior's full-sized avatar

Zeno Junior zenojunior

View GitHub Profile
@tiagoportaluppi
tiagoportaluppi / Dockerfile
Last active March 26, 2020 23:07
Desenvolvimento web em JSP com Docker + PostgreSQL + Tomcat
FROM tomcat:9.0.1-jre8-alpine
COPY ./build/web /usr/local/tomcat/webapps/<YOUR_PROJECT_FOLDER>
CMD ["catalina.sh", "run"]