Create new challenge Docker image

This commit is contained in:
2025-02-03 16:28:30 +01:00
parent c128870b93
commit 46a95ff5a4
4 changed files with 30 additions and 1 deletions

View File

@ -1,4 +1,11 @@
FROM php:8.3-apache
COPY src/ /var/www/html/
ENV FLAG=CHANGEME
ENV FLAG=CHANGEME
COPY docker/start.sh /start.sh
COPY docker/add_flag.php /add_flag.php
EXPOSE 80
ENTRYPOINT ["/start.sh"]