From a23c09ccae1897d935fdaea9d0172bc5a82b8595 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Thu, 23 Jan 2025 15:42:15 +0000
Subject: [PATCH] build(deps): bump node from 23.6.0-slim to 23.6.1-slim

Bumps node from 23.6.0-slim to 23.6.1-slim.

---
updated-dependencies:
- dependency-name: node
  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 b6ad923..1c5b4fc 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,5 +1,5 @@
 # The builder image
-FROM node:23.6.0 AS builder
+FROM node:23.6.1 AS builder
 ENV NODE_ENV=production
 WORKDIR /home/node/app
 RUN apt-get update && \
@@ -11,7 +11,7 @@ RUN --mount=type=secret,id=npmrc,target=/home/node/.npmrc \
     npm ci --omit=dev
 
 # The production image
-FROM node:23.6.0-slim AS production
+FROM node:23.6.1-slim AS production
 ENV NODE_ENV=production
 WORKDIR /home/node/app
 COPY --from=builder /usr/bin/dumb-init /usr/bin/dumb-init
-- 
GitLab