Spaces:
Runtime error
Runtime error
File size: 292 Bytes
160659c 4988387 160659c 4988387 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
FROM python:3.9-slim
# Install system dependencies for OpenCV
RUN apt-get update && apt-get install -y \
libgl1-mesa-glx \
libglib2.0-0 \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
CMD ["python", "model2.py"] |