From 7f5babb93052d514c1c23a9d406070d1f1ed3a3f Mon Sep 17 00:00:00 2001 From: vrenaville Date: Tue, 4 Jun 2024 11:25:39 +0200 Subject: [PATCH] feat: test for odoo fork --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 627764c..dbe6629 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,8 +17,8 @@ FROM debian:bookworm-slim RUN set -x \ && apt update \ && apt -y install --no-install-recommends wget ca-certificates fonts-liberation2 fonts-nanum-coding fonts-horai-umefont fonts-wqy-microhei \ - && wget -q -O /tmp/wkhtmltox.deb https://github.com/wkhtmltopdf/packaging/releases/download/0.12.6.1-3/wkhtmltox_0.12.6.1-3.bookworm_amd64.deb \ - && echo "e9f95436298c77cc9406bd4bbd242f4771d0a4b2 /tmp/wkhtmltox.deb" | sha1sum -c - \ + && wget -q -O /tmp/wkhtmltox.deb https://github.com/odoo/wkhtmltopdf/releases/download/nightly/odoo-wkhtmltopdf-debian-bookworm-x86_64-0.13.0-nightly.deb \ + && echo "240c13ea94675d596bbb86e763be586938443f89 /tmp/wkhtmltox.deb" | sha1sum -c - \ && apt -y install /tmp/wkhtmltox.deb \ && apt -y purge wget --autoremove \ && apt -y clean \