From 82e74c3c1ed2ce902b74c60965965fe5f87783d1 Mon Sep 17 00:00:00 2001 From: GroM Date: Fri, 12 Jan 2024 15:48:14 +0100 Subject: [PATCH] when building containers, install the last cargo-ledger tool published on crates.io --- full/Dockerfile | 2 +- legacy/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/full/Dockerfile b/full/Dockerfile index 0da6af9..d0f3a31 100644 --- a/full/Dockerfile +++ b/full/Dockerfile @@ -38,7 +38,7 @@ RUN pip3 install ledgerwallet==0.4.0 RUN apk del python_build_deps # Add cargo ledger (needs a version of Rust >= 1.70) -RUN cargo +$RUST_STABLE_VERSION install --version 1.2.2 cargo-ledger +RUN cargo +$RUST_STABLE_VERSION install cargo-ledger # Setup cargo ledger (install JSON target files) RUN cargo ledger setup diff --git a/legacy/Dockerfile b/legacy/Dockerfile index 0c79bbf..3d675df 100644 --- a/legacy/Dockerfile +++ b/legacy/Dockerfile @@ -66,7 +66,7 @@ RUN rustup component add rust-src --toolchain $RUST_NIGHTLY_VERSION RUN pip3 install ledgerwallet==0.4.0 # Add cargo ledger (needs a version of Rust >= 1.70) -RUN cargo +$RUST_STABLE_VERSION install --version 1.2.2 cargo-ledger +RUN cargo +$RUST_STABLE_VERSION install cargo-ledger # Setup cargo ledger (install JSON target files) RUN cargo ledger setup