From e4be463c70dc823683f5f3a6b026f79969754d94 Mon Sep 17 00:00:00 2001 From: Johannes Edmeier Date: Thu, 24 Sep 2026 14:19:21 +0200 Subject: [PATCH] chore(deps): pin bundled npm to 12.1.0 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b435673..0a9a348 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ FROM node:26-alpine COPY --from=builder ./build/steadybit-*.tgz steadybit.tgz RUN apk update && apk upgrade --no-cache && rm -rf /var/cache/apk/* && \ - npm -g install npm@12 && \ + npm -g install npm@12.1.0 && \ npm -g install ./steadybit.tgz && \ rm ./steadybit.tgz