From 34b36f5d147a5db9600da3e9bc40dd67ceeeb553 Mon Sep 17 00:00:00 2001 From: Matthieu Date: Fri, 3 Apr 2026 16:23:03 +0200 Subject: [PATCH] fix(infra) : add qpdf to production Docker image qpdf was only installed in dev Dockerfile, causing the PDF compressor to silently skip compression in production. Co-Authored-By: Claude Opus 4.6 (1M context) --- infra/prod/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infra/prod/Dockerfile b/infra/prod/Dockerfile index 1e215b3..4b0ba5d 100644 --- a/infra/prod/Dockerfile +++ b/infra/prod/Dockerfile @@ -42,7 +42,7 @@ FROM php:8.4-fpm AS production RUN apt-get update && apt-get install -y \ libicu-dev libpq-dev libpng-dev libzip-dev libxml2-dev \ - nginx supervisor \ + nginx supervisor qpdf \ && docker-php-ext-install -j$(nproc) intl pdo_pgsql zip gd opcache \ && rm -rf /var/lib/apt/lists/*