From 58bdf984bc8ac61657e78345e9e73b6c786cb7cc Mon Sep 17 00:00:00 2001 From: Till JS Date: Fri, 20 Mar 2026 16:38:47 +0100 Subject: [PATCH] fix(calendar): add patches dir to web Dockerfile pnpm install fails without the patches directory since the lockfile references react-native-reanimated patch. Co-Authored-By: Claude Opus 4.6 (1M context) --- apps/calendar/apps/web/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/calendar/apps/web/Dockerfile b/apps/calendar/apps/web/Dockerfile index 82c77d02b..5fa5e9bed 100644 --- a/apps/calendar/apps/web/Dockerfile +++ b/apps/calendar/apps/web/Dockerfile @@ -43,6 +43,9 @@ COPY packages/shared-vite-config ./packages/shared-vite-config COPY packages/shared-api-client ./packages/shared-api-client COPY packages/shared-stores ./packages/shared-stores +# Copy patches (referenced by pnpm-lock.yaml) +COPY patches ./patches + # Copy calendar packages and web COPY apps/calendar/packages ./apps/calendar/packages COPY apps/calendar/apps/web ./apps/calendar/apps/web