From bbe2a32efce6e684f61c29c43d76e4d68a97bae5 Mon Sep 17 00:00:00 2001 From: lebaudantoine Date: Wed, 8 Jul 2026 01:23:57 +0200 Subject: [PATCH] =?UTF-8?q?=E2=AC=86=EF=B8=8F(frontend)=20update=20the=20f?= =?UTF-8?q?rontend=20build=20image=20to=20Node=2022?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bump the Node.js version used in the frontend build image from Node 20 to Node 22. --- CHANGELOG.md | 7 ++++--- docker/dinum-frontend/Dockerfile | 2 +- src/frontend/Dockerfile | 2 +- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b486324..b711f806 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,9 +23,10 @@ and this project adheres to - ♻️(backend) refactor analytics backend from Protocol to abstract class - 🔥(summary) remove call to summary enabled feature flag - ♻️(frontend) wrap MuteEveryoneButton with AdminOrOwnerOnly -- ⬆(frontend) upgrade livekit-client from 2.19.0 to 2.19.2 -- ⬆(frontend) upgrade posthog-js from 1.386.5 to 1.387.0 -- ⬆(frontend) upgrade @tanstack/react-query from 5.100.14 to 5.101.0 +- ⬆️(frontend) upgrade livekit-client from 2.19.0 to 2.19.2 +- ⬆️(frontend) upgrade posthog-js from 1.386.5 to 1.387.0 +- ⬆️(frontend) upgrade @tanstack/react-query from 5.100.14 to 5.101.0 +- ⬆️(frontend) update the frontend build image to Node 22 ### Fixed diff --git a/docker/dinum-frontend/Dockerfile b/docker/dinum-frontend/Dockerfile index a7a5e9ae..c8cbe46b 100644 --- a/docker/dinum-frontend/Dockerfile +++ b/docker/dinum-frontend/Dockerfile @@ -1,5 +1,5 @@ # ---- Front-end image ---- -FROM node:20-alpine AS frontend-deps +FROM node:22-alpine AS frontend-deps WORKDIR /home/frontend/ diff --git a/src/frontend/Dockerfile b/src/frontend/Dockerfile index 9a1bf381..44d35b2b 100644 --- a/src/frontend/Dockerfile +++ b/src/frontend/Dockerfile @@ -1,4 +1,4 @@ -FROM node:20-alpine AS frontend-deps +FROM node:22-alpine AS frontend-deps USER node