FROM python:3.12-alpine
WORKDIR /app
COPY . .
RUN pip install requests
ENTRYPOINT ["python"]
CMD ["app.py"]