From db2a0e6afc258277ce7806b800322910ab9cbf5f Mon Sep 17 00:00:00 2001 From: Till JS Date: Sun, 22 Mar 2026 18:24:59 +0100 Subject: [PATCH] fix(storage): copy patches directory in Dockerfile for pnpm install pnpm install --frozen-lockfile fails without the patches directory since pnpm-lock.yaml references patched packages. Co-Authored-By: Claude Opus 4.6 (1M context) --- apps/storage/apps/web/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/storage/apps/web/Dockerfile b/apps/storage/apps/web/Dockerfile index 9b8c7f320..2b4fff28f 100644 --- a/apps/storage/apps/web/Dockerfile +++ b/apps/storage/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 storage web COPY packages/shared-api-client ./packages/shared-api-client