Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
triple-t
/
live-discussion-gallery
like
0
Runtime error
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
c0e7ebe
live-discussion-gallery
/
Dockerfile
cbensimon
HF staff
Update Dockerfile
ebd4e4b
about 2 years ago
raw
Copy download link
history
blame
160 Bytes
FROM
python:
3.10
RUN
pip install fastapi uvicorn[standard] huggingface_hub
COPY
--
link
. .
CMD
[
"uvicorn"
,
"app:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]