feat: wkhtmltopdf now default installed

This commit is contained in:
Luca Haid
2025-04-08 21:32:14 +02:00
parent 4c19245842
commit 6284f75e9b

View File

@@ -4,12 +4,12 @@ FROM debian:bookworm
# Install wkhtmltopdf # Install wkhtmltopdf
RUN apt update 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 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 RUN 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 RUN 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 RUN 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 RUN 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 RUN wget https://archive.debian.org/debian/pool/main/libj/libjpeg8/libjpeg8_8b-1_amd64.deb
# dpkg -i libjpeg8_8b-1_amd64.deb RUN dpkg -i libjpeg8_8b-1_amd64.deb
# Install apache2 and PHP and PHP modules # Install apache2 and PHP and PHP modules
RUN apt update && \ RUN apt update && \