Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Bagi4
/
newSign
like
0
Runtime error
App
Files
Files
Community
4f87c8a
newSign
/
Dockerfile
Bagi4
Update Dockerfile
47d50f2
verified
8 months ago
raw
Copy download link
history
blame
Safe
140 Bytes
FROM
python:
3.9
COPY
. .
RUN
pip install --upgrade -r requirements.txt
CMD
[
"uvicorn"
,
"main:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]