# Use the official Python image with Python 3.10
FROM python:3.10.12

# Install system dependencies
RUN apt-get update && apt-get install -y \
  libgl1-mesa-glx \
  libglib2.0-0

# Install Python packages
RUN pip install paddleocr PyMuPDF clearedge

# Command to run the application
CMD ["python"]
