# Use Python base image FROM python:3.10 # Install poppler-utils RUN apt-get update && apt-get install -y poppler-utils # Set working directory WORKDIR /main # Copy app files COPY . /main # Install Python dependencies RUN pip install -r requirements.txt # Set default command CMD ["python", "main.py"]