Open bcheidemann opened 1 year ago
Mhm, interesting.
My hunch would be this being related to the rustup setup, as in: the PATH not prioritizing the rustup provided wrappers.
This works fine:
FROM archlinux
RUN pacman -Syu rustup openssl base-devel
RUN rustup default stable
RUN cargo install cargo-wasix
RUN cargo new wasixhello && cd wasixhello && cargo wasix build
Outcome
cargo wasix build
fails with error'cargo' is not installed for the toolchain 'wasix'
.Expected Result
Should build successfully.
Replication Steps