FROM python:3.11 COPY . . RUN chmod +777 ./ RUN pip install flask requests RUN echo python3 api.py > start.sh RUN chmod +x start.sh CMD "./start.sh"