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.

7 lines
199 B

FROM tomcat:8.0.36-jre8
RUN rm -rf /usr/local/tomcat/webapps/*
ADD vulnerable-application/cible/log4shell-1.0-SNAPSHOT.war /usr/local/tomcat/webapps/ROOT.war
EXPOSE 8080
CMD ["catalina.sh", "run"]