From 81d73445bd2f5fba69bcb79ca1f0b887aa7c2632 Mon Sep 17 00:00:00 2001 From: cybermaggedon Date: Mon, 16 Jun 2025 14:15:16 +0100 Subject: [PATCH] Add missing dependencies to the PDF OCR container (#411) --- containers/Containerfile.ocr | 1 + 1 file changed, 1 insertion(+) diff --git a/containers/Containerfile.ocr b/containers/Containerfile.ocr index 661b8e17..43b66463 100644 --- a/containers/Containerfile.ocr +++ b/containers/Containerfile.ocr @@ -9,6 +9,7 @@ FROM docker.io/fedora:42 AS base ENV PIP_BREAK_SYSTEM_PACKAGES=1 RUN dnf install -y python3.12 && \ + dnf install -y tesseract poppler-utils && \ alternatives --install /usr/bin/python python /usr/bin/python3.12 1 && \ python -m ensurepip --upgrade && \ pip3 install --no-cache-dir wheel aiohttp && \