Commit a23c09cc authored by dependabot[bot]'s avatar dependabot[bot] Committed by Dmitriy Safronov
Browse files

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: default avatardependabot[bot] <support@github.com>
parent 9edb2e68
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
# 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