From bfd76e9b4b116e85a4fbf415a119731d71aa0d32 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 16 Jun 2026 03:33:42 +0000 Subject: [PATCH] chore(deps): bump library/node from 22-alpine to 24-alpine Bumps library/node from 22-alpine to 24-alpine. --- updated-dependencies: - dependency-name: library/node dependency-version: 24-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..de430c3 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:24-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:24-alpine AS runner WORKDIR /app ENV NODE_ENV=production \ NEXT_TELEMETRY_DISABLED=1 \