From 975bb16d70b5d9eaf926f87af3dafc0a2069615a Mon Sep 17 00:00:00 2001 From: Marc Mintel Date: Wed, 11 Feb 2026 16:42:38 +0100 Subject: [PATCH] fix: include pnpm-workspace.yaml in earliest build stage for correct monorepo links --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index edd6bf0..c4ef7e5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,7 +18,7 @@ ENV SKIP_RUNTIME_ENV_VALIDATION=true ENV CI=true # Copy manifest files specifically for better layer caching -COPY pnpm-lock.yaml package.json .npmrc* ./ +COPY pnpm-lock.yaml pnpm-workspace.yaml package.json .npmrc* ./ COPY apps/web/package.json ./apps/web/package.json # Install dependencies with cache mount and dynamic .npmrc (High Fidelity pattern)