Bingo / Dockerfile
Niansuh's picture
Update Dockerfile
c203617 verified
raw
history blame
100 Bytes
FROM python:3.11
RUN pip install flask requests
COPY main.py .
EXPOSE 7860
CMD ["python", "main.py"]