Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
taghyan
/
model2
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
model2
/
Dockerfile
taghyan
Create Dockerfile
bccfa56
verified
14 days 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"
]