From 817240d2137d2f621748b1d68a3145d51c86efc5 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 31 Jul 2026 21:42:43 +0000 Subject: [PATCH] chore(deps): update node.js to f70403e --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index f492247..b57eb4b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ # linux/amd64 and linux/arm64 targets working. Renovate keeps it current, on a # 1-day cooldown rather than the 7 days other updates wait, since a digest bump # is how this image's security patches arrive. -FROM node:24-alpine@sha256:a0b9bf06e4e6193cf7a0f58816cc935ff8c2a908f81e6f1a95432d679c54fbfd AS builder +FROM node:24-alpine@sha256:f70403e87646dc51b45295f4b8b70cdad0b63d2297c4c9899119b03f7af7a6b3 AS builder WORKDIR /app RUN corepack enable # HUSKY=0 disables the `prepare` hook: git hooks are a developer-machine @@ -20,7 +20,7 @@ COPY tsconfig.json tsconfig.build.json nest-cli.json ./ COPY src ./src RUN pnpm run build -FROM node:24-alpine@sha256:a0b9bf06e4e6193cf7a0f58816cc935ff8c2a908f81e6f1a95432d679c54fbfd AS runner +FROM node:24-alpine@sha256:f70403e87646dc51b45295f4b8b70cdad0b63d2297c4c9899119b03f7af7a6b3 AS runner WORKDIR /app ENV NODE_ENV=production ENV PORT=3000