chore: Install toolchains and components in build

This commit is contained in:
Gerald Pinder 2025-04-29 00:50:18 -04:00
parent fb28157bc5
commit 2f6b2b4b70

View file

@ -104,6 +104,12 @@ install-all-features:
common:
FROM --platform=native ghcr.io/blue-build/earthly-lib/cargo-builder
RUN rustup self update && \
rustup toolchain add stable && \
rustup default stable && \
rustup component add clippy rustfmt && \
rustup update
WORKDIR /app
COPY --keep-ts --dir src/ template/ recipe/ utils/ process/ /app
COPY --keep-ts Cargo.* /app