From fe69da9c337b92c24c90d4e5e25288a9c75c6278 Mon Sep 17 00:00:00 2001 From: Will Hunt <2072976+Half-Shot@users.noreply.github.com> Date: Mon, 8 Jun 2026 17:26:14 +0100 Subject: [PATCH] Move install statement to allow linked builds to complete (#33782) --- apps/web/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/Dockerfile b/apps/web/Dockerfile index feb00601b0..51ecaeb628 100644 --- a/apps/web/Dockerfile +++ b/apps/web/Dockerfile @@ -14,8 +14,8 @@ WORKDIR /src # Install dependencies COPY --parents package.json pnpm-lock.yaml pnpm-workspace.yaml patches scripts **/package.json /src/ RUN corepack enable -RUN --mount=type=bind,source=.git,target=/src/.git /src/scripts/docker-link-repos.sh RUN pnpm install --frozen-lockfile +RUN --mount=type=bind,source=.git,target=/src/.git /src/scripts/docker-link-repos.sh # Build COPY --link --exclude=.git --exclude=apps/web/docker . /src