CoolFace
Apppublic

Rf33d/DR-CKD

sourceHugging Faceupdated 5mo agoView on Hugging Face
0likes
Dockerfile18 linesDownload Raw Back to root
1FROM python:3.10-slim2 3WORKDIR /app4 5# Install system dependencies needed by OpenCV6RUN apt-get update && apt-get install -y --no-install-recommends \7    libglib2.0-0 libgl1 \8    && rm -rf /var/lib/apt/lists/*9 10COPY requirements.txt .11RUN pip install --no-cache-dir -r requirements.txt12 13COPY . .14 15EXPOSE 786016 17CMD ["python", "app.py"]18