FROM python:3.12-slim

RUN pip install flask requests

WORKDIR /app
COPY app.py .
COPY regex .

CMD python3 app.py
