From 28d8cfcbe77b44951c2eac208b3837537c24a9a9 Mon Sep 17 00:00:00 2001 From: Till JS Date: Sun, 22 Mar 2026 17:43:17 +0100 Subject: [PATCH] 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) --- apps/manacore/apps/web/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/manacore/apps/web/Dockerfile b/apps/manacore/apps/web/Dockerfile index 50b3738c0..005a7d21f 100644 --- a/apps/manacore/apps/web/Dockerfile +++ b/apps/manacore/apps/web/Dockerfile @@ -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