From a04061205361a16a13238284a29ca708e16c7002 Mon Sep 17 00:00:00 2001 From: Sebastian Leheis Date: Fri, 15 Dec 2023 01:57:29 +0100 Subject: [PATCH] Dockerfile aktualisiert Added bugfix for missing bz2 https://help.nextcloud.com/t/docker-image-setup-warning-missing-bz2-after-update-to-nc-28-0-0/176605 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4fadfd0..202d110 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ FROM amd64/nextcloud:28.0.0-fpm -RUN apt-get update && apt-get install -y libmagickcore-6.q16-6-extra tesseract-ocr tesseract-ocr-deu tesseract-ocr-eng ocrmypdf && apt-get clean autoclean && apt-get autoremove -y +RUN apt-get update && apt-get install -y libmagickcore-6.q16-6-extra tesseract-ocr tesseract-ocr-deu tesseract-ocr-eng ocrmypdf libbz2-dev && docker-php-ext-install bz2 && apt-get clean autoclean && apt-get autoremove -y ADD https://raw.githubusercontent.com/tesseract-ocr/tessdata/main/deu.traineddata /usr/share/tesseract-ocr/tessdata/ ADD https://raw.githubusercontent.com/tesseract-ocr/tessdata/main/eng.traineddata /usr/share/tesseract-ocr/tessdata/ \ No newline at end of file -- 2.45.2