FROM python:3.13.7-alpine3.22

WORKDIR /usr/app

COPY . .

ENV PYTHONUNBUFFERED=1

RUN pip install -r requirements.txt

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