FROM python:3.10 # Install poppler-utils RUN apt-get update && apt-get install -y poppler-utils # Set the working directory WORKDIR /app # Copy the application code COPY . /app # Install Python dependencies RUN pip install -r requirements.txt # Run the application CMD ["streamlit", "run", "app.py"]