Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Yjhhh
/
App
like
0
Sleeping
App
Files
Files
Community
61e4bb6
App
/
Dockerfile
Yjhhh
Create Dockerfile
61e4bb6
verified
2 months ago
raw
Copy download link
history
blame
Safe
193 Bytes
FROM
python:
3.9
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install --no-cache-dir --upgrade -r requirements.txt
COPY
. .
CMD
[
"uvicorn"
,
"main:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]