File size: 148 Bytes
e482f03
 
 
 
 
 
 
1
2
3
4
5
6
7
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"