From d8f2e9a25d2294543e12da02b47b18ae473e4015 Mon Sep 17 00:00:00 2001 From: copilotcoder Date: Sun, 21 Jun 2026 08:55:26 -0400 Subject: [PATCH] fix(ci): stop requiring frontend/.yarn in docker build context Keep .yarnrc.yml early for Yarn 4 config but remove COPY of frontend/.yarn, which may be absent in CI checkout and causes frontend image build failure. --- Dockerfile.frontend | 1 - 1 file changed, 1 deletion(-) diff --git a/Dockerfile.frontend b/Dockerfile.frontend index 445b6df..be5d130 100644 --- a/Dockerfile.frontend +++ b/Dockerfile.frontend @@ -7,7 +7,6 @@ WORKDIR /app # Copy package files first for better caching COPY frontend/package*.json ./ COPY frontend/.yarnrc.yml ./ -COPY frontend/.yarn/ ./.yarn/ COPY frontend/yarn.lock* frontend/pnpm-lock.yaml* ./ # Install dependencies