write-ups-challenges-2019-2020/DecryptThis/Dockerfile

6 lines
116 B
Docker
Raw Normal View History

2022-11-24 21:43:03 +00:00
FROM php:7.2-apache
COPY decrypt.php /var/www/html
RUN chown www-data:www-data /var/www/html/decrypt.php
EXPOSE 80