Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
abdullahalioo/wow
abdullahalioo
/
wow2
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
7159e17
wow2
/
Dockerfile
abdullahalioo
Update Dockerfile
7159e17
verified
3 months ago
raw
Copy download link
history
blame
Safe
170 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"
]