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