From 65a680e152b86aaf8d4b9a9ed20bb471c6c28616 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 May 2026 01:05:21 +0000 Subject: [PATCH] chore(deps): bump node in /frontend in the frontend-base-images group Bumps the frontend-base-images group in /frontend with 1 update: node. Updates `node` from 24-alpine to 26-alpine --- updated-dependencies: - dependency-name: node dependency-version: 26-alpine dependency-type: direct:production dependency-group: frontend-base-images ... Signed-off-by: dependabot[bot] --- frontend/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 17b25c8..64f0439 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -1,9 +1,9 @@ -FROM node:24-alpine AS deps +FROM node:26-alpine AS deps WORKDIR /app COPY frontend/package*.json ./ RUN npm ci -FROM node:24-alpine AS builder +FROM node:26-alpine AS builder WORKDIR /app ARG NEXT_PUBLIC_API_BASE_URL=http://localhost:8080 ENV NEXT_TELEMETRY_DISABLED=1 @@ -12,7 +12,7 @@ COPY --from=deps /app/node_modules ./node_modules COPY frontend ./ RUN npm run build -FROM node:24-alpine AS runner +FROM node:26-alpine AS runner WORKDIR /app ARG SERVICE_NAME=frontend ARG BUILD_VERSION=0.4.0