From 1fb291eba4181749bdbe579b043dc5e83ab97a96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=91=A8=E7=9D=BF?= Date: Mon, 6 Jan 2025 16:04:08 +0800 Subject: [PATCH] [dockerfile] prepare toolchain --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index 8e395c4f51..ebd911ace7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,6 +6,10 @@ RUN apt-get update \ RUN cargo install cargo-binutils axconfig-gen +COPY rust-toolchain.toml /rust-toolchain.toml + +RUN rustc --version + RUN wget https://musl.cc/aarch64-linux-musl-cross.tgz \ && wget https://musl.cc/riscv64-linux-musl-cross.tgz \ && wget https://musl.cc/x86_64-linux-musl-cross.tgz \