diff --git a/Dockerfile b/Dockerfile index ecbcf3a..73f78d7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -37,6 +37,7 @@ xfonts-75dpi \ yarn \ python \ + wkhtmltopdf \ ca-certificates -qqy \ && rm -rf /var/lib/apt/lists/* @@ -44,11 +45,6 @@ RUN curl -sL https://deb.nodesource.com/setup_14.x | bash RUN apt install -y nodejs -# Fetching WKHTMLTOPDF -RUN wget https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.5/wkhtmltox_0.12.5-1.bionic_amd64.deb \ - && dpkg -i wkhtmltox_0.12.5-1.bionic_amd64.deb \ - && apt-get install -f - # Set locale to UTF8 RUN locale-gen --no-purge fr_FR.UTF-8 \ && update-locale LANG=fr_FR.UTF-8 \