From 1d0a0cc637c086ec1ec9676e9f8f59974c45f6f7 Mon Sep 17 00:00:00 2001 From: lebaudantoine Date: Thu, 20 Aug 2026 13:25:33 +0200 Subject: [PATCH] =?UTF-8?q?=E2=AC=86=EF=B8=8F(mail)=20upgrade=20Node=20ima?= =?UTF-8?q?ge=20for=20mails-install=20to=20align=20with=20the=20frontend?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Node 18 is now legacy, and running `make mails-install` was failing with a "bad engine" error against the current image. Bump the Node image used for `mails-install` to a more recent version, aligned with the one used by the frontend, so the make target runs cleanly again. Note: the Alpine variant cannot be used here, as `bash` is required to build the mail templates. --- compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compose.yml b/compose.yml index f60537e4..76fedbd6 100644 --- a/compose.yml +++ b/compose.yml @@ -180,7 +180,7 @@ services: working_dir: /app node: - image: node:18 + image: node:22 user: "${DOCKER_USER:-1000}" environment: HOME: /tmp