Rf33d/DR-CKD
0
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 