FROM python:3.11-slim

WORKDIR /app

ENV FLAG=sctf{tokenizers_are_part_of_the_attack_surface}
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt

COPY . ./

EXPOSE 3903

CMD ["python", "server.py"]
