File size: 100 Bytes
c203617
 
 
 
 
1
2
3
4
5
FROM python:3.11
RUN pip install flask requests
COPY main.py .
EXPOSE 7860
CMD ["python", "main.py"]