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...
3b04c28
live-discussion-gallery
/
Dockerfile
cbensimon
HF staff
Fix Dockerfile
422feae
about 2 years ago
raw
Copy download link
history
blame
Safe
144 Bytes
FROM
python:
3.10
RUN
pip install fastapi uvicorn[standard]
COPY
--
link
. .
CMD
[
"uvicorn"
,
"app:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]