From 3b8931090fa3df9ff8fcc0930aafba1b6d337398 Mon Sep 17 00:00:00 2001 From: Till JS Date: Thu, 19 Mar 2026 15:10:08 +0100 Subject: [PATCH] fix(auth): scope pnpm install to auth service in Dockerfile Use --filter to only install mana-core-auth and shared-storage deps, avoiding missing workspace package errors from root package.json. 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 183766b22..75bb9df5c 100644 --- a/services/mana-core-auth/Dockerfile +++ b/services/mana-core-auth/Dockerfile @@ -21,7 +21,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 --no-frozen-lockfile +RUN pnpm install --no-frozen-lockfile --filter mana-core-auth... --filter @manacore/shared-storage # Build shared-storage first WORKDIR /app/packages/shared-storage