From 7354d443c819fc710a912d7a7db8b6ce25ee562b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 3 Jan 2026 01:25:08 +0000 Subject: [PATCH] Bump node from 20-alpine to 25-alpine 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] --- Dockerfile | 8 ++++---- Dockerfile.cli | 4 ++-- Dockerfile.dev | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5661439..89c2cc3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ # ============================================================================ # Stage 1: Dependencies # ============================================================================ -FROM node:20-alpine AS deps +FROM node:25-alpine AS deps WORKDIR /app # Install build dependencies for native modules @@ -32,7 +32,7 @@ RUN npm ci # ============================================================================ # Stage 2: Builder # ============================================================================ -FROM node:20-alpine AS builder +FROM node:25-alpine AS builder WORKDIR /app # Install build dependencies @@ -61,7 +61,7 @@ RUN npm run build # ============================================================================ # Stage 3: Production Dependencies # ============================================================================ -FROM node:20-alpine AS production-deps +FROM node:25-alpine AS production-deps WORKDIR /app # Install runtime dependencies only @@ -75,7 +75,7 @@ RUN npm ci --production && \ # ============================================================================ # Stage 4: Production Runtime # ============================================================================ -FROM node:20-alpine AS production +FROM node:25-alpine AS production WORKDIR /app # Install runtime libraries for canvas/native modules diff --git a/Dockerfile.cli b/Dockerfile.cli index d687a5a..01f451a 100644 --- a/Dockerfile.cli +++ b/Dockerfile.cli @@ -1,7 +1,7 @@ # CLI Tools Dockerfile for LSI Ecosystem # Lightweight image with lsictl CLI tools only -FROM node:20-alpine AS builder +FROM node:25-alpine AS builder WORKDIR /app # Install build dependencies @@ -27,7 +27,7 @@ RUN npm run build --workspace=@lsi/cli && \ # ============================================================================ # CLI Runtime Stage # ============================================================================ -FROM node:20-alpine +FROM node:25-alpine RUN apk add --no-cache \ cairo \ diff --git a/Dockerfile.dev b/Dockerfile.dev index 3262574..11e772f 100644 --- a/Dockerfile.dev +++ b/Dockerfile.dev @@ -1,7 +1,7 @@ # Development Dockerfile for LSI Ecosystem # This creates a development environment with hot reload and debugging tools -FROM node:20-alpine +FROM node:25-alpine # Install development dependencies RUN apk add --no-cache \