Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
rao223
/
pp
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
pp
/
Dockerfile
ykl45
Update Dockerfile
4b5b227
verified
almost 2 years ago
raw
Copy download link
history
blame
contribute
delete
Safe
100 Bytes
FROM
python:
3.11
RUN
pip install flask requests
COPY
main.py .
EXPOSE
7860
CMD
[
"python"
,
"main.py"
]