diff --git a/Dockerfile b/Dockerfile
index 05cb9b27964e81a178a73dc9faa793e67c609ed0..caa01d0f8bee0214258844948c794bf4bf529a9f 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,5 +1,5 @@
 # The builder image
-FROM node:23.7.0 AS builder
+FROM node:23.8.0 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:23.7.0-slim AS production
+FROM node:23.8.0-slim AS production
 ENV NODE_ENV=production
 WORKDIR /home/node/app
 COPY --from=builder /usr/bin/dumb-init /usr/bin/dumb-init