Spaces:
raojl3
/
Runtime error

yy / Dockerfile
ykl45's picture
Update Dockerfile
4b5b227 verified
raw
history blame contribute delete
100 Bytes
FROM python:3.11
RUN pip install flask requests
COPY main.py .
EXPOSE 7860
CMD ["python", "main.py"]