From 5cb211de8eff6ece395ebf833d67ed72ba71f140 Mon Sep 17 00:00:00 2001 From: zman Date: Mon, 7 Apr 2025 16:35:58 -0400 Subject: [PATCH] d --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 475644d..1ee3d72 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,10 +2,13 @@ FROM python:3.13-slim WORKDIR /app +# Install Poppler utilities +RUN apt-get update && apt-get install -y poppler-utils && rm -rf /var/lib/apt/lists/* + # Copy the requirements file COPY requirements.txt . -# Install the dependencies +# Install the Python dependencies RUN pip install --no-cache-dir -r requirements.txt # Copy the application files