FROM python:3.11 RUN pip install Flask==3.0.3 Flask_Cors==4.0.0 Requests==2.31.0 COPY api.py . EXPOSE 7860 CMD ["python", "api.py"]