From 473a5c5c8868b24884f73d6029b8e6fcb8ba8274 Mon Sep 17 00:00:00 2001 From: Paolo Dettori Date: Wed, 8 Jul 2026 22:49:05 -0400 Subject: [PATCH] chore(deps): Bump node from 22-alpine to 24-alpine Supersedes Dependabot PR #73, which proposed node:26-alpine. Node 26 is the Current line (not LTS until Oct 2026); 24 is the active LTS, a safer target for a base-image bump. Applies to both builder and runtime stages. Assisted-By: Claude (Anthropic AI) Signed-off-by: Paolo Dettori --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4640091..45f359f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Stage 1: install + build pi-fork -FROM node:22-alpine AS builder +FROM node:24-alpine AS builder RUN apk add --no-cache build-base python3 pkgconfig pixman-dev cairo-dev pango-dev jpeg-dev giflib-dev librsvg-dev RUN corepack enable && corepack prepare pnpm@9 --activate WORKDIR /app @@ -36,7 +36,7 @@ RUN npm run build -w packages/ai && \ WORKDIR /app # Stage 2: slim runtime -FROM node:22-alpine +FROM node:24-alpine RUN apk add --no-cache kubectl cairo pango libjpeg-turbo giflib librsvg pixman WORKDIR /app COPY --from=builder /app ./