Files
ctf/2025/lake/web/web-magicauth/mta/Dockerfile
2025-11-29 14:49:20 +01:00

14 lines
238 B
Docker

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"]