Bump node in /

Bumps the docker-base-images/node group with 1 update: node.


Updates `node` from 24.19.0-alpine3.23 to 24.20.0-alpine3.23

---
updated-dependencies:
- dependency-name: node
  dependency-version: 24.20.0-alpine3.23
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: docker
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot]
2026-08-31 16:11:13 +00:00
committed by GitHub
parent f32ebdec79
commit dd399da8bf
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
FROM node:24.19.0-alpine3.23 AS build
FROM node:24.20.0-alpine3.23 AS build
# Move files into the image and install
WORKDIR /app
@@ -14,7 +14,7 @@ RUN yarn build
RUN yarn install --production --ignore-scripts --prefer-offline
# Uses assets from build stage to reduce build size
FROM node:24.19.0-alpine3.23
FROM node:24.20.0-alpine3.23
RUN apk add --update dumb-init
+2 -2
View File
@@ -1,4 +1,4 @@
FROM node:24.19.0-alpine3.23 AS build
FROM node:24.20.0-alpine3.23 AS build
# Tells pnpm to run non-interactively (needed for install/script steps)
ENV CI=true
@@ -19,7 +19,7 @@ RUN pnpm install-fonts && pnpm build
RUN pnpm install --prod --ignore-scripts --prefer-offline
# Uses assets from build stage to reduce build size
FROM node:24.19.0-alpine3.23
FROM node:24.20.0-alpine3.23
RUN apk add --update dumb-init