From a604ad7053f73b112c8142ca0a0c7919f4edb5dc Mon Sep 17 00:00:00 2001 From: Agustin Alba Chicar Date: Tue, 26 Nov 2024 13:32:03 +0100 Subject: [PATCH] Installs rust toolchain 1.75 in docker workflow. See #420. (#436) Signed-off-by: Agustin Alba Chicar --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b148eafe3..d117d5c0f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ RUN apt-get update && apt-get install -y \ && rm -rf /var/lib/apt/lists/* # Install Rust and the cargo-ament-build plugin -RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- --default-toolchain 1.74.0 -y +RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- --default-toolchain 1.75.0 -y ENV PATH=/root/.cargo/bin:$PATH RUN cargo install cargo-ament-build