From ef4bec4383d6be6b69fe75af63a455fef94f983c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Jun 2025 21:26:07 +0000 Subject: [PATCH] chore(docker):(deps): Bump node from 20-alpine to 24-alpine Bumps node from 20-alpine to 24-alpine. --- updated-dependencies: - dependency-name: 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 7b5af12..2a100fb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Build stage -FROM node:20-alpine AS builder +FROM node:24-alpine AS builder # Set working directory WORKDIR /app @@ -18,7 +18,7 @@ COPY src/ ./src/ RUN npm run build # Production stage -FROM node:20-alpine AS production +FROM node:24-alpine AS production # Install dumb-init for proper signal handling RUN apk add --no-cache dumb-init