From 2c21f6c2bc79684258e96e97fa2aef01b546cdd9 Mon Sep 17 00:00:00 2001 From: Till JS Date: Thu, 19 Mar 2026 15:08:15 +0100 Subject: [PATCH] fix(auth): use --no-frozen-lockfile in Dockerfile The partial workspace copy causes lockfile mismatches since not all referenced packages are present in the Docker build context. Co-Authored-By: Claude Opus 4.6 (1M context) --- services/mana-core-auth/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/mana-core-auth/Dockerfile b/services/mana-core-auth/Dockerfile index 0737aa576..a31bd119f 100644 --- a/services/mana-core-auth/Dockerfile +++ b/services/mana-core-auth/Dockerfile @@ -20,7 +20,7 @@ COPY packages/shared-storage ./packages/shared-storage COPY services/mana-core-auth ./services/mana-core-auth # Install dependencies (without ignore-scripts to build native modules like bcrypt) -RUN pnpm install --frozen-lockfile +RUN pnpm install --no-frozen-lockfile # Build shared-storage first WORKDIR /app/packages/shared-storage