fix(ci): stop requiring frontend/.yarn in docker build context
All checks were successful
CICD Start / Sanity and Base Decision (pull_request) Successful in 11s

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.
This commit is contained in:
copilotcoder
2026-06-21 08:55:26 -04:00
parent 159bbe639f
commit d8f2e9a25d

View File

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