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) <noreply@anthropic.com>
This commit is contained in:
Till JS 2026-03-22 18:24:59 +01:00
parent 50d084b25f
commit db2a0e6afc

View file

@ -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