From d3e02b7d0d7dcf4c9a2b0a98c5385a0b88b37c56 Mon Sep 17 00:00:00 2001 From: Agustin Alba Chicar Date: Tue, 26 Nov 2024 10:01:43 +0100 Subject: [PATCH] Installs rust toolchain 1.75 in docker workflow. See #420. 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