From 6284f75e9b94d63309bc89770bf5e4598306b252 Mon Sep 17 00:00:00 2001 From: Luca Haid Date: Tue, 8 Apr 2025 21:32:14 +0200 Subject: [PATCH] feat: wkhtmltopdf now default installed --- docker/php/Dockerfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docker/php/Dockerfile b/docker/php/Dockerfile index 156d739c7..432a43e52 100644 --- a/docker/php/Dockerfile +++ b/docker/php/Dockerfile @@ -4,12 +4,12 @@ FROM debian:bookworm # Install wkhtmltopdf RUN apt update RUN apt install wget libfontenc1 xfonts-75dpi xfonts-base xfonts-encodings xfonts-utils openssl build-essential libssl-dev libxrender-dev git-core libx11-dev libxext-dev libfontconfig1-dev libfreetype6-dev fontconfig -y -# wget https://github.com/wkhtmltopdf/packaging/releases/download/0.12.6-1/wkhtmltox_0.12.6-1.stretch_amd64.deb -# dpkg --force-all -i wkhtmltox_0.12.6-1.stretch_amd64.deb -# wget https://www.mytaxexpress.com/download/libssl1.1_1.1.1f-1ubuntu2.17_amd64.deb -# dpkg -i libssl1.1_1.1.1f-1ubuntu2.17_amd64.deb -# wget https://archive.debian.org/debian/pool/main/libj/libjpeg8/libjpeg8_8b-1_amd64.deb -# dpkg -i libjpeg8_8b-1_amd64.deb +RUN wget https://github.com/wkhtmltopdf/packaging/releases/download/0.12.6-1/wkhtmltox_0.12.6-1.stretch_amd64.deb +RUN dpkg --force-all -i wkhtmltox_0.12.6-1.stretch_amd64.deb +RUN wget https://www.mytaxexpress.com/download/libssl1.1_1.1.1f-1ubuntu2.17_amd64.deb +RUN dpkg -i libssl1.1_1.1.1f-1ubuntu2.17_amd64.deb +RUN wget https://archive.debian.org/debian/pool/main/libj/libjpeg8/libjpeg8_8b-1_amd64.deb +RUN dpkg -i libjpeg8_8b-1_amd64.deb # Install apache2 and PHP and PHP modules RUN apt update && \