Remove workaround for lack of musl-dev now that musl-dev is provided in Rust Alpine images

Additionally, optimizes the build process a bit via leaving only the runtime
(and `busybox`) in the final image, and additionally building the runtime
without `std` (as we solely need the WASM blob from this process).
This commit is contained in:
Luke Parker
2025-12-03 20:02:03 -05:00
parent 57bf4984f8
commit 36ac9c56a4
7 changed files with 268 additions and 253 deletions

View File

@@ -1,4 +1,4 @@
fn main() {
#[cfg(feature = "std")]
#[cfg(not(target_family = "wasm"))]
substrate_wasm_builder::WasmBuilder::build_using_defaults();
}