Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
abdullahalioo/wow
abdullahalioo
/
vision
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
19ff4f6
vision
/
Dockerfile
abdullahalioo
Update Dockerfile
19ff4f6
verified
3 months ago
raw
Copy download link
history
blame
Safe
169 Bytes
FROM
python:
3.10
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install -r requirements.txt
COPY
. .
CMD
[
"uvicorn"
,
"app:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]