Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Domify
/
Infograph
like
1
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
Infograph
/
Dockerfile
Domify
Create Dockerfile
729c816
verified
about 1 month ago
raw
Copy download link
history
blame
contribute
delete
Safe
192 Bytes
FROM
python:
3.9
-slim
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
COPY
app.py .
CMD
[
"uvicorn"
,
"app:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]