CoolFace
Apppublic

Filupa/Object_Detection

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
Dockerfile16 linesDownload Raw Back to root
1FROM python:3.10-slim2 3RUN apt-get update && apt-get install -y \4    libgl1-mesa-glx \5    libglib2.0-06 7WORKDIR /server8 9COPY requirements.txt ./10RUN pip install --no-cache-dir -r requirements.txt11 12COPY . .13 14EXPOSE 786015 16CMD ["uvicorn", "server:server", "--host", "0.0.0.0", "--port", "7860"]