Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
abdullahalioo/hostserver
abdullahalioo
/
finaltry
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
2c9d491
finaltry
/
Dockerfile
abdullahalioo
Create Dockerfile
b32075b
verified
3 months ago
raw
Copy download link
history
blame
Safe
171 Bytes
FROM
python:
3.10
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install -r requirements.txt
COPY
. .
CMD
[
"uvicorn"
,
"main:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]