COPY Vulns/Foothold/SSTI-RCE/SSTI-app /var/www/webapp.vut
COPY Vulns/Foothold/SSTI-RCE/etc /etc
RUN pip install flask
RUN pip install gunicorn
RUN ln -s /etc/nginx/sites-available/webapp.vut /etc/nginx/sites-enabled/
RUN find /var/www/webapp.vut -type d -exec chmod 0755 {{}} \;
RUN find /var/www/webapp.vut -type f -exec chmod 0644 {{}} \;
RUN systemctl enable flask