🩹(backend) fix the mail-builder step in docker

Upgrading mjml now requires node >=22. I forgot to update the step,
responsible to build the mail template in the production image.
This commit is contained in:
lebaudantoine
2026-07-13 11:26:41 +02:00
committed by aleb_the_flash
parent dac0b9c000
commit ab707d866f
+1 -1
View File
@@ -37,7 +37,7 @@ RUN --mount=type=cache,target=/root/.cache/uv \
uv sync --locked --no-dev uv sync --locked --no-dev
# ---- mails ---- # ---- mails ----
FROM node:20 AS mail-builder FROM node:22 AS mail-builder
COPY ./src/mail /mail/app COPY ./src/mail /mail/app