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