Remove rust-src as a component for WASM

It's unnecessary since `wasm32v1-none`.
This commit is contained in:
Luke Parker
2025-11-12 23:00:57 -05:00
parent 264bdd46ca
commit ac7af40f2e
5 changed files with 3 additions and 5 deletions

View File

@@ -11,7 +11,6 @@ RUN rm -rf /etc/apt/sources.list.d/debian.sources && \
RUN apt update -y && apt upgrade -y && apt install -y clang
# Add the wasm toolchain
RUN rustup component add rust-src
RUN rustup target add wasm32v1-none
FROM deterministic