Basmala3li/Computer_Vision_Project
0
1FROM python:3.10-slim2 3WORKDIR /app4 5RUN apt-get update && apt-get install -y \6 libgl1 \7 libglib2.0-0 \8 && rm -rf /var/lib/apt/lists/*9 10ENV YOLO_CONFIG_DIR=/tmp/Ultralytics11 12COPY requirements.txt .13RUN pip install --no-cache-dir -r requirements.txt14 15COPY best.pt .16COPY app.py .17 18EXPOSE 786019 20CMD ["python", "app.py"]