From 113998f641cb0c7f84757868e9a60474ee20a023 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 10 May 2026 09:03:38 +0000 Subject: [PATCH] chore(deps): bump node from 25-alpine to 26-alpine Bumps node from 25-alpine to 26-alpine. --- updated-dependencies: - dependency-name: node dependency-version: 26-alpine dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 64c3c86..07a3273 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # Multi-stage Dockerfile for Codex # Stage 1: Build -FROM node:25-alpine AS builder +FROM node:26-alpine AS builder WORKDIR /app @@ -20,7 +20,7 @@ COPY client/ ./client/ RUN npm run build # Stage 2: Production -FROM node:25-alpine AS production +FROM node:26-alpine AS production WORKDIR /app