# Attacker-side archive builder. Current Python per request.
FROM python:3.14-slim
WORKDIR /lab
COPY build_archives.py /lab/build_archives.py
# Build the rule archives into the shared, Caddy-served volume, then exit (one-shot).
CMD ["python3", "/lab/build_archives.py", "/srv"]
