Spaces:
Sleeping
Sleeping
File size: 366 Bytes
625e2d6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | FROM python:3.9-slim
# Install system dependencies including poppler
RUN apt-get update && apt-get install -y \
poppler-utils \
libgl1-mesa-glx \
&& rm -rf /var/lib/apt/lists/*
# Install Python dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy app code
COPY app.py .
# Run the app
CMD ["python", "app.py"] |