FROM python:3.11 RUN pip install flask requests COPY main.py . EXPOSE 7860 CMD ["python", "main.py"]