diff --git a/Dockerfile b/Dockerfile index 32450d0..1ba2150 100644 --- a/Dockerfile +++ b/Dockerfile @@ -52,7 +52,7 @@ ENV PATH=/home/rust/.cargo/bin:/usr/local/musl/bin:/usr/local/sbin:/usr/local/bi RUN curl https://sh.rustup.rs -sSf | \ sh -s -- -y --default-toolchain $TOOLCHAIN && \ rustup target add x86_64-unknown-linux-musl && \ - rustup target add armv7-unknown-linux-gnueabihf + rustup target add armv7-unknown-linux-musleabihf ADD cargo-config.toml /home/rust/.cargo/config # Set up a `git credentials` helper for using GH_USER and GH_TOKEN to access diff --git a/cargo-config.toml b/cargo-config.toml index 6b7d5ca..6208b7b 100644 --- a/cargo-config.toml +++ b/cargo-config.toml @@ -2,5 +2,5 @@ # Target musl-libc by default when running Cargo. target = "x86_64-unknown-linux-musl" -[target.armv7-unknown-linux-gnueabihf] +[target.armv7-unknown-linux-musleabihf] linker = "arm-linux-gnueabihf-gcc-4.7"