fix(manacore): copy patches directory in Dockerfile for pnpm install

The pnpm-lock.yaml references patches/react-native-reanimated which
was not being copied into the Docker build context, causing build failures.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Till JS 2026-03-22 17:43:17 +01:00
parent fa116dfee0
commit 28d8cfcbe7

View file

@ -19,6 +19,7 @@ WORKDIR /app
COPY pnpm-workspace.yaml ./
COPY package.json ./
COPY pnpm-lock.yaml ./
COPY patches ./patches
# Copy shared packages needed by manacore web
COPY packages/shared-auth ./packages/shared-auth