From 1bac7cf38a28b40f8ad8ffad4f112c101a858f92 Mon Sep 17 00:00:00 2001 From: Till JS Date: Thu, 7 May 2026 02:03:25 +0200 Subject: [PATCH] fix(mana-auth): COPY packages/shared-error-tracking in Dockerfile Mirror the same fix as cards-core (dd2e60954): the new shared-error-tracking workspace dep needs an explicit COPY line in the installer stage, otherwise pnpm-install-with-filter can't find the package and the runtime container is missing it under node_modules/@mana/. Co-Authored-By: Claude Opus 4.7 (1M context) --- services/mana-auth/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/services/mana-auth/Dockerfile b/services/mana-auth/Dockerfile index a7e4dd130..6390702b4 100644 --- a/services/mana-auth/Dockerfile +++ b/services/mana-auth/Dockerfile @@ -13,6 +13,7 @@ COPY packages/shared-hono ./packages/shared-hono COPY packages/shared-ai ./packages/shared-ai COPY packages/shared-logger ./packages/shared-logger COPY packages/shared-types ./packages/shared-types +COPY packages/shared-error-tracking ./packages/shared-error-tracking # Install only mana-auth and its workspace deps RUN pnpm install --filter @mana/auth... --no-frozen-lockfile --ignore-scripts