This commit is contained in:
2025-11-29 14:49:20 +01:00
parent e951a0dd44
commit 77affbad71
19 changed files with 4664 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
FROM python:3.14-slim
RUN groupadd --system --gid 999 ctf \
&& useradd --system --gid 999 --uid 999 --create-home ctf
RUN pip install 'aiosmtpd==1.4.6'
COPY server.py /app/server.py
USER ctf
WORKDIR /app
CMD ["python", "server.py"]