From b290600984d26f1dacd12ca7a2dc3fb466f01d34 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 26 May 2026 08:35:18 +0000 Subject: [PATCH] chore(deps): bump library/node from 22-alpine to 26-alpine Bumps library/node from 22-alpine to 26-alpine. --- updated-dependencies: - dependency-name: library/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 c65f456..07022d0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # syntax=docker/dockerfile:1.7 ARG BUN_VERSION=1-alpine -FROM mirror.gcr.io/library/node:22-alpine AS builder +FROM mirror.gcr.io/library/node:26-alpine AS builder # bun replaces oven/bun:* builder image. Pulling node from public.ecr.aws # (no rate limit) and installing bun keeps build reproducible without # touching docker.io. @@ -20,7 +20,7 @@ COPY . . RUN bun run build RUN mkdir -p /app/public -FROM mirror.gcr.io/library/node:22-alpine AS runner +FROM mirror.gcr.io/library/node:26-alpine AS runner WORKDIR /app ENV NODE_ENV=production \ NEXT_TELEMETRY_DISABLED=1 \