From a7ab72af111ce2861dcd950f1403cfc4faff43b8 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Thu, 30 Apr 2026 14:15:55 +0100 Subject: [PATCH] Use frozen-lockfile in Dockerfile pnpm install (#33333) --- apps/web/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/Dockerfile b/apps/web/Dockerfile index 2cc7e22fdb..a29297130e 100644 --- a/apps/web/Dockerfile +++ b/apps/web/Dockerfile @@ -15,7 +15,7 @@ WORKDIR /src COPY --parents package.json pnpm-lock.yaml pnpm-workspace.yaml patches scripts **/package.json /src/ RUN corepack enable RUN --mount=type=bind,source=.git,target=/src/.git /src/scripts/docker-link-repos.sh -RUN pnpm install +RUN pnpm install --frozen-lockfile # Build COPY --link --exclude=.git --exclude=apps/web/docker . /src