diff --git a/Dockerfile b/Dockerfile
index fbf46ea620155506d79e1ad416819976873f38db..64f6b785fcac1b15ccd2783fdb21e425ec4df842 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,5 +1,5 @@
 # The builder image
-FROM node:23.10.0 AS builder
+FROM node:23.11.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.10.0-slim AS production
+FROM node:23.11.0-slim AS production
 ENV NODE_ENV=production
 WORKDIR /home/node/app
 COPY --from=builder /usr/bin/dumb-init /usr/bin/dumb-init