fix(frontend-image): use repo-pinned yarn for immutable install
Some checks failed
CICD / Build and Push CICD Images (push) Successful in 12m19s
CICD / Build CICD Image Failure Postmortem (push) Has been skipped
CICD / Source Checks (push) Successful in 3m42s
CICD / Source Lanes Failure Postmortem (push) Has been skipped
CICD / Dependency Audits (Informational) (push) Successful in 8m20s
CICD / CICD Tests Complete (push) Successful in 5s
CICD / Build Tester Images (push) Successful in 2m54s
CICD / Build Release Images (push) Successful in 11m7s
CICD / Production Image Failures Postmortem (push) Has been skipped
CICD / Production Images Complete (push) Successful in 4s
CICD / Runtime Black-Box Integration Tests (push) Successful in 1m17s
CICD / Integration Tests Failure Postmortem (push) Has been skipped
CICD / End-to-End Tests (push) Failing after 5m14s
CICD / Promote Staging Images To Release (push) Has been skipped
CICD / E2E Tests Failure Postmortem (push) Successful in 9s

This commit is contained in:
copilotcoder
2026-07-22 14:26:11 -04:00
parent e61b70c4a0
commit f71025ee1c

View File

@@ -19,7 +19,8 @@ RUN set -eux; \
done; \
return 1; \
}; \
retry 5 npm install -g --force @yarnpkg/cli-dist@4.10.3; \
corepack enable; \
retry 5 corepack prepare yarn@4.17.1 --activate; \
retry 5 yarn install --immutable
FROM deps AS build