From 6476521fd15a1d386c330a843ece73b9bda83d5f Mon Sep 17 00:00:00 2001 From: Till JS Date: Fri, 20 Mar 2026 20:57:38 +0100 Subject: [PATCH] fix(picture): add patches directory to web Dockerfile pnpm install fails without the patches/ directory since pnpm-lock.yaml references patch files. Co-Authored-By: Claude Opus 4.6 (1M context) --- apps/picture/apps/web/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/picture/apps/web/Dockerfile b/apps/picture/apps/web/Dockerfile index 6a27d43bf..eba5c5b9a 100644 --- a/apps/picture/apps/web/Dockerfile +++ b/apps/picture/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 picture web COPY packages/shared-types ./packages/shared-types