Add missing dependencies to the PDF OCR container

This commit is contained in:
Cyber MacGeddon 2025-06-16 14:11:47 +01:00
parent 35b0d80013
commit a4719c66c8

View file

@ -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 && \