Spaces:
Paused
Paused
File size: 285 Bytes
0b17bc3 8eac3b8 0bb3d0d 8eac3b8 c0732e2 6c3b796 8eac3b8 0bb3d0d b79622f 0b17bc3 8eac3b8 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | FROM python:3.10-slim
WORKDIR /app
# Install only essential system dependencies
RUN apt-get update && apt-get install -y \
libgl1 \
&& rm -rf /var/lib/apt/lists/*
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["python", "app.py"] |