Linux Dockerfile
This file contains 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 tomcat:8.5.32-jre8 | |
COPY heartbeat.war /usr/local/tomcat/webapps | |
COPY restServices.war /usr/local/tomcat/webapps | |
COPY server.xml /usr/local/tomcat/conf | |
COPY mh-tomcat-modules.jar /usr/local/tomcat/lib | |
COPY sqljdbc42.jar /usr/local/tomcat/lib | |
#COPY activation.jar /usr/local/tomcat/lib | |
COPY mail.jar /usr/local/tomcat/lib | |
COPY packageSettings.xml /usr/local/tomcat/conf | |
EXPOSE 8080 | |
EXPOSE 8443 | |
CMD ["catalina.sh", "run"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment