From ab707d866ff1d6cd9cf3d185f79bd5c8f39b4bd0 Mon Sep 17 00:00:00 2001 From: lebaudantoine Date: Mon, 13 Jul 2026 11:26:41 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A9=B9(backend)=20fix=20the=20mail-builde?= =?UTF-8?q?r=20step=20in=20docker?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Upgrading mjml now requires node >=22. I forgot to update the step, responsible to build the mail template in the production image. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5e446df0..bd1e662b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -37,7 +37,7 @@ RUN --mount=type=cache,target=/root/.cache/uv \ uv sync --locked --no-dev # ---- mails ---- -FROM node:20 AS mail-builder +FROM node:22 AS mail-builder COPY ./src/mail /mail/app