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...
aa25f09
mediapipe_fastapi_20classes
/
Dockerfile
tosanoob
First upload
aa25f09
verified
9 months ago
raw
Copy download link
history
blame
Safe
178 Bytes
FROM
python:
3.12
WORKDIR
/code
COPY
* /code
RUN
pip install --no-cache-dir -r /app/requirement.txt
CMD
[
"uvicorn"
,
"app:app"
,
"--host"
,
"0.0.0.0"
,
"--port"
,
"7860"
]