CoolFace
Apppublic

tosanoob/mediapipe_fastapi_20classes

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
Dockerfile12 linesDownload Raw Back to root
1FROM python:3.122 3WORKDIR /code4 5COPY * /code6 7RUN pip install --no-cache-dir -r /code/requirement.txt8 9RUN apt-get update && apt-get install ffmpeg libsm6 libxext6  -y10 11CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]12