fix(mukke): add patches dir to Dockerfiles for pnpm install

pnpm install --frozen-lockfile fails without the patches directory
because pnpm-lock.yaml references react-native-reanimated patch.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Till JS 2026-03-19 12:11:50 +01:00
parent c15bd05305
commit 24a6efa453
2 changed files with 2 additions and 0 deletions

View file

@ -10,6 +10,7 @@ WORKDIR /app
COPY pnpm-workspace.yaml ./
COPY package.json ./
COPY pnpm-lock.yaml ./
COPY patches ./patches
# Copy shared packages
COPY packages/shared-drizzle-config ./packages/shared-drizzle-config

View file

@ -18,6 +18,7 @@ WORKDIR /app
COPY pnpm-workspace.yaml ./
COPY package.json ./
COPY pnpm-lock.yaml ./
COPY patches ./patches
# Copy shared packages needed by mukke web
COPY packages/shared-api-client ./packages/shared-api-client