You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
FROM tomcat:9.0-jdk17-openjdk-slim
|
|
|
|
WORKDIR /usr/local/tomcat/webapps
|
|
|
|
# Remove the default Tomcat apps
|
|
RUN rm -rf ROOT* docs examples manager host-manager
|
|
|
|
COPY target/SpringRestExample.war /usr/local/tomcat/webapps/ROOT.war
|
|
|
|
EXPOSE 8080
|
|
|
|
# Start Tomcat
|
|
CMD ["catalina.sh", "run"]
|
|
|