FROM python:3.11-slim


COPY . .

WORKDIR /data

RUN pip install --no-cache-dir -r /data/requirements.txt

CMD ["gunicorn", "-b", "0.0.0.0:5000", "app:app"]
