From 1a65338efe3100a595ee503135c3957042dc8de7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 30 Jan 2026 06:32:52 +0000 Subject: [PATCH] docker: bump node from 20-alpine to 25-alpine in /apps/api Bumps node from 20-alpine to 25-alpine. --- updated-dependencies: - dependency-name: node dependency-version: 25-alpine dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- apps/api/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/api/Dockerfile b/apps/api/Dockerfile index 0c7ad4f..58719bb 100644 --- a/apps/api/Dockerfile +++ b/apps/api/Dockerfile @@ -1,5 +1,5 @@ # Build stage -FROM node:20-alpine AS builder +FROM node:25-alpine AS builder # Install pnpm RUN corepack enable && corepack prepare pnpm@9.15.4 --activate @@ -19,7 +19,7 @@ RUN --mount=type=cache,id=pnpm,target=/root/.local/share/pnpm/store \ RUN pnpm turbo run build --filter=@arss/api... # Production stage -FROM node:20-alpine AS runner +FROM node:25-alpine AS runner # Install pnpm RUN corepack enable && corepack prepare pnpm@9.15.4 --activate