Spaces:
Runtime error
Runtime error
| # Use the official Python base image | |
| FROM python:3.10-slim | |
| # Install system dependencies | |
| RUN apt-get update && apt-get install -y poppler-utils | |
| # Install Python dependencies | |
| COPY requirements.txt . | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| # Copy the rest of your app's code | |
| COPY . /app | |
| # Set the working directory | |
| WORKDIR /app | |
| # Command to run the app | |
| CMD ["streamlit", "run", "app.py"] | |