From a6584e684a5b7cffcb7cb8b0314ca2feb1d4d4cb Mon Sep 17 00:00:00 2001 From: Peter Neuroth Date: Thu, 2 Nov 2023 12:06:26 +0100 Subject: [PATCH] reprobuild: Upgrade rust version We need to upgrade the rust version of the ubuntu docker images as time-core v0.1.2 needs a version newer than 1.67.0 Signed-off-by: Peter Neuroth --- contrib/reprobuild/Dockerfile.focal | 2 +- contrib/reprobuild/Dockerfile.jammy | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/reprobuild/Dockerfile.focal b/contrib/reprobuild/Dockerfile.focal index 80a2ab8e770e..0dd8b1d2c5d1 100644 --- a/contrib/reprobuild/Dockerfile.focal +++ b/contrib/reprobuild/Dockerfile.focal @@ -45,7 +45,7 @@ RUN wget https://bootstrap.pypa.io/get-pip.py -O /tmp/get-pip.py && python3 /tmp RUN wget https://sh.rustup.rs -O rustup-install.sh && \ bash rustup-install.sh --default-toolchain none --quiet -y && \ rm rustup-install.sh && \ - /root/.cargo/bin/rustup install 1.65 + /root/.cargo/bin/rustup install 1.73 # Download protoc manually, it is in the update repos which we # disabled above, so `apt-get` can't find it anymore. diff --git a/contrib/reprobuild/Dockerfile.jammy b/contrib/reprobuild/Dockerfile.jammy index 776dd2513cb0..024067b2d979 100644 --- a/contrib/reprobuild/Dockerfile.jammy +++ b/contrib/reprobuild/Dockerfile.jammy @@ -46,7 +46,7 @@ RUN wget https://bootstrap.pypa.io/get-pip.py -O /tmp/get-pip.py && python3 /tmp RUN wget https://sh.rustup.rs -O rustup-install.sh && \ bash rustup-install.sh --default-toolchain none --quiet -y && \ rm rustup-install.sh && \ - /root/.cargo/bin/rustup install 1.65 + /root/.cargo/bin/rustup install 1.73 # Download protoc manually, it is in the update repos which we # disabled above, so `apt-get` can't find it anymore.