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) <noreply@anthropic.com>
This commit is contained in:
Till JS 2026-03-19 15:08:15 +01:00
parent 817ccfea31
commit 2c21f6c2bc

View file

@ -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