From ce0d6ffda2d2e4fbda87b12c37bf3cb1f38c5f23 Mon Sep 17 00:00:00 2001 From: Brandon Currell Date: Fri, 1 Aug 2025 11:59:39 +0100 Subject: [PATCH] :whale: Add missing package in the exporter Docker image (#7026) penpot-exporter requires poppler-utils for exporting to a PDF, but it is missing. Added the package to the Dockerfile in the RUN section where dependencies are being installed. Signed-off-by: Brandon Currell --- CHANGES.md | 1 + docker/images/Dockerfile.exporter | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGES.md b/CHANGES.md index 38451c31d4..207dfb7183 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -19,6 +19,7 @@ - Fix problem with booleans selection [Taiga #11627](https://tree.taiga.io/project/penpot/issue/11627) - Fix missing font when copy&paste a chunk of text [Taiga #11522](https://tree.taiga.io/project/penpot/issue/11522) - Fix bad swap slot after two swaps [Taiga #11659](https://tree.taiga.io/project/penpot/issue/11659) +- Fix missing package for the penport_exporter Docker image [GitHub #7205](https://github.com/penpot/penpot/issues/7025) ## 2.9.0 (Unreleased) diff --git a/docker/images/Dockerfile.exporter b/docker/images/Dockerfile.exporter index 22718c30cb..43167cf2db 100644 --- a/docker/images/Dockerfile.exporter +++ b/docker/images/Dockerfile.exporter @@ -39,6 +39,7 @@ RUN set -ex; \ fonts-wqy-zenhei \ fonts-tlwg-loma-otf \ fonts-freefont-ttf \ + poppler-utils \ \ libasound2t64 \ libatk-bridge2.0-0t64 \