From b40421faeadebbb6f1e44065a8915d60f6bba819 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 17 Sep 2026 21:36:25 +0000 Subject: [PATCH] chore(deps): update node.js to 50c8e8c --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index fddf68a..39c453c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,7 +18,7 @@ # Adding a production dependency with native bindings breaks that assumption # silently — the image would ship the builder's architecture. Such a dependency # has to be installed on $TARGETPLATFORM instead, emulation and all. -FROM --platform=$BUILDPLATFORM node:24-alpine@sha256:e67514e5d0f6c46656005e1b693b2ec9d52e80b641307de684d4a015ba7a4eaf AS builder +FROM --platform=$BUILDPLATFORM node:24-alpine@sha256:50c8e8ca1d27439048670df5883f32d57cf81cff6233222c893fd0d9884cbd81 AS builder WORKDIR /app RUN corepack enable # HUSKY=0 disables the `prepare` hook: git hooks are a developer-machine @@ -39,7 +39,7 @@ RUN pnpm run build # installs git hooks for developers cannot run here — and an install whose # scripts may fetch architecture-specific binaries would defeat the # build-platform reasoning above. -FROM --platform=$BUILDPLATFORM node:24-alpine@sha256:e67514e5d0f6c46656005e1b693b2ec9d52e80b641307de684d4a015ba7a4eaf AS deps +FROM --platform=$BUILDPLATFORM node:24-alpine@sha256:50c8e8ca1d27439048670df5883f32d57cf81cff6233222c893fd0d9884cbd81 AS deps WORKDIR /app ENV HUSKY=0 RUN corepack enable @@ -50,7 +50,7 @@ RUN pnpm install --prod --frozen-lockfile --ignore-scripts # nothing: it copies what the stages above produced. That keeps QEMU out of the # multi-platform build entirely, and leaves neither pnpm nor its # content-addressable store in the image the way an install here would. -FROM node:24-alpine@sha256:e67514e5d0f6c46656005e1b693b2ec9d52e80b641307de684d4a015ba7a4eaf AS runner +FROM node:24-alpine@sha256:50c8e8ca1d27439048670df5883f32d57cf81cff6233222c893fd0d9884cbd81 AS runner WORKDIR /app ENV NODE_ENV=production ENV PORT=3000