From 3f6f095aeba585f1818bce6b1e958dd86c1899c2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 9 May 2025 15:35:37 +0000 Subject: [PATCH] build(deps): bump node from 24.0.0-slim to 24.0.1-slim Bumps node from 24.0.0-slim to 24.0.1-slim. --- updated-dependencies: - dependency-name: node dependency-version: 24.0.1-slim dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1cd2767..15b16b1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # The builder image -FROM node:24.0.0 AS builder +FROM node:24.0.1 AS builder ENV NODE_ENV=production WORKDIR /home/node/app RUN --mount=type=bind,source=package.json,target=package.json \ @@ -12,7 +12,7 @@ RUN --mount=type=bind,source=package.json,target=package.json \ npm ci --omit=dev # The production image -FROM node:24.0.0-slim AS production +FROM node:24.0.1-slim AS production ENV NODE_ENV=production WORKDIR /home/node/app COPY --from=builder /usr/bin/dumb-init /usr/bin/dumb-init -- GitLab