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