From 437d1a0b11c1bd4744acc236467e193905927715 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Oct 2025 04:31:42 +0000 Subject: [PATCH] Bump node from 24-alpine to 25-alpine Bumps node from 24-alpine to 25-alpine. --- updated-dependencies: - dependency-name: node dependency-version: 25-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 97cf8f7..7d4d418 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # Multi-stage build for Skymmich # SECURITY: This image does not contain any secrets or API keys # All sensitive configuration is provided via environment variables at runtime -FROM node:24-alpine AS builder +FROM node:25-alpine AS builder # Set working directory WORKDIR /build @@ -30,7 +30,7 @@ COPY tools/ ./tools/ RUN npm run build:docker # Production stage -FROM node:24-alpine AS runtime +FROM node:25-alpine AS runtime # Install curl for health checks # hadolint ignore=DL3018