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