From 12cc4088b7aa265f5a954a201a1c2450f84c6d81 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 3 Feb 2026 12:06:17 +0000 Subject: [PATCH] chore(deps): update node.js to v24 --- Dockerfile | 2 +- synkronus-portal/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 334fb1da5..063ffafa4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,7 +22,7 @@ ENV CGO_ENABLED=0 GOOS=linux RUN go build -a -ldflags='-w -s' -o synkronus ./cmd/synkronus # Stage 2: Build the React application (Portal) -FROM node:20-alpine AS portal-builder +FROM node:24-alpine AS portal-builder WORKDIR /app diff --git a/synkronus-portal/Dockerfile b/synkronus-portal/Dockerfile index 8ede596a7..d72292750 100644 --- a/synkronus-portal/Dockerfile +++ b/synkronus-portal/Dockerfile @@ -1,6 +1,6 @@ # Multi-stage build for Synkronus Portal # Stage 1: Build the React application -FROM node:20-alpine AS builder +FROM node:24-alpine AS builder WORKDIR /app