From 0645f686b7e16789018d92107d548a467c5e60ea Mon Sep 17 00:00:00 2001 From: "depfu[bot]" <23717796+depfu[bot]@users.noreply.github.com> Date: Tue, 11 Aug 2026 00:00:53 +0000 Subject: [PATCH] Update Node.js to version 24.19.0 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2c8c28f..6456d2e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,11 @@ -FROM node:24.18.0-alpine AS builder +FROM node:24.19.0-alpine AS builder WORKDIR /app COPY package.json yarn.lock ./ RUN yarn install --frozen-lockfile --non-interactive COPY . . RUN yarn build -FROM node:24.18.0-alpine +FROM node:24.19.0-alpine RUN apk --no-cache add curl WORKDIR /app COPY --from=builder /app .