build: upgrade node base image to version 24-alpine

This commit is contained in:
Przemek Więch
2026-07-04 22:01:17 +02:00
parent 8133efdcdb
commit 4d2cd67f04

View File

@@ -1,5 +1,5 @@
# Stage 1: Compile the React/TypeScript bundle
FROM node:20-alpine AS react-builder
FROM node:24-alpine AS react-builder
WORKDIR /app
COPY package*.json ./
RUN npm ci