Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
tosanoob
/
mediapipe_fastapi_20classes
like
0
Paused
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
36cd190
mediapipe_fastapi_20classes
/
Dockerfile
tosanoob
Update Dockerfile
c416750
verified
about 1 year ago
raw
Copy download link
history
blame
Safe
170 Bytes
FROM
python:
3.12
WORKDIR
/code
COPY
* /code
RUN
pip install --no-cache-dir -r /code/requirement.txt
CMD
[
"uvicorn"
,
"app:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]