CoolFace
Apppublic

trueProger1/srf_bot_object_recognition

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes
Dockerfile17 linesDownload Raw Back to root
1FROM python:3.10-slim2 3WORKDIR /app4 5# системные библиотеки для Pillow6RUN apt-get update && apt-get install -y --no-install-recommends \7    libglib2.0-0 libsm6 libxext6 libxrender-dev && \8    rm -rf /var/lib/apt/lists/*9 10COPY requirements.txt app.py ./11 12RUN pip install --no-cache-dir -r requirements.txt13 14EXPOSE 786015CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]16 17