From 44bc4b7fa4449b75ee94d7d34f2ef6024f0bd9ce 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 ea5f1bafbb..c1ba0d6a8c 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -6,6 +6,7 @@ - Fix unexpected exception on processing old texts [Github #6889](https://github.com/penpot/penpot/pull/6889) - Fix error on inspect tab when selecting multiple shapes [Taiga #11655](https://tree.taiga.io/project/penpot/issue/11655) +- Fix missing package for the penport_exporter Docker image [GitHub #7205](https://github.com/penpot/penpot/issues/7025) ## 2.8.0 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 \