From 40666529f9a328d5a441e373b2b275df76996951 Mon Sep 17 00:00:00 2001 From: Oskar Sveinsen Date: Fri, 5 Jun 2026 13:03:53 +0200 Subject: [PATCH] fix(Dockerfile): add ca-certificates, missing in chromium-only image The gotenberg and gotenberg-libreoffice images pull in ca-certificates as a dependency of python3-distutils-extra, but it's missing from the gotenberg-chromium image. The issue only affects webhooks, as Chromium itself uses bundled certificates. --- build/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/build/Dockerfile b/build/Dockerfile index 7ba99ff5..baa878c7 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -125,6 +125,7 @@ RUN groupadd --gid "$GOTENBERG_USER_GID" gotenberg \ RUN apt-get update -qq \ && apt-get upgrade -yqq \ && DEBIAN_FRONTEND=noninteractive apt-get install -y -qq --no-install-recommends \ + ca-certificates \ tini \ # Many users rely on curl for Docker health checks. curl \