From 690ef911deb0b67fbe0f4f9c74f928c25f2c3c48 Mon Sep 17 00:00:00 2001 From: Quantum Explorer Date: Wed, 8 Apr 2026 11:05:35 +0300 Subject: [PATCH] fix: add rs-scripts to Docker build context rs-scripts was added as a workspace member but not included in the Dockerfile COPY directives. This caused cargo chef prepare to fail with "No such file or directory" when trying to read packages/rs-scripts/Cargo.toml during metadata extraction. Co-Authored-By: Claude Opus 4.6 (1M context) --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index a42d32ce66a..3768d6f0b64 100644 --- a/Dockerfile +++ b/Dockerfile @@ -409,6 +409,7 @@ COPY --parents \ packages/check-features \ packages/dash-platform-balance-checker \ packages/wasm-sdk \ + packages/rs-scripts \ /platform/ RUN --mount=type=secret,id=AWS \ @@ -514,6 +515,7 @@ COPY --parents \ packages/check-features \ packages/dash-platform-balance-checker \ packages/wasm-sdk \ + packages/rs-scripts \ /platform/ RUN mkdir /artifacts @@ -862,6 +864,7 @@ COPY --parents \ packages/check-features \ packages/dash-platform-balance-checker \ packages/wasm-sdk \ + packages/rs-scripts \ /platform/ RUN mkdir /artifacts