Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
NiansuhAI
/
Bingo
like
5
Running
App
Files
Files
Community
5
Fetching metadata from the HF Docker repository...
c203617
Bingo
/
Dockerfile
Niansuh
Update Dockerfile
c203617
verified
9 months ago
raw
Copy download link
history
blame
Safe
100 Bytes
FROM
python:
3.11
RUN
pip install flask requests
COPY
main.py .
EXPOSE
7860
CMD
[
"python"
,
"main.py"
]