From 1af6efe6e2dc0ff651d84c4f8b5f86a0307a357f Mon Sep 17 00:00:00 2001 From: kemitix Date: Thu, 9 Jan 2025 17:26:55 +0000 Subject: [PATCH] chore(deps): update docker.io/rust docker tag to v1.84.0 Includes updating cargo-binstall to 1.10.19 --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index c1986b1..1a51982 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM docker.io/rust:1.83.0-slim-bookworm +FROM docker.io/rust:1.84.0-slim-bookworm # nodejs - runtime used by forgejo/github actions # curl - to download cargo-binstall @@ -13,7 +13,7 @@ RUN apt-get update \ && \ rm -r /var/lib/apt/lists/* -RUN curl -L https://github.com/cargo-bins/cargo-binstall/releases/download/v1.10.12/cargo-binstall-x86_64-unknown-linux-musl.tgz -o cargo-binstall.tgz && \ +RUN curl -L https://github.com/cargo-bins/cargo-binstall/releases/download/v1.10.19/cargo-binstall-x86_64-unknown-linux-musl.tgz -o cargo-binstall.tgz && \ tar -xzf cargo-binstall.tgz && \ rm cargo-binstall.tgz && \ mv cargo-binstall /usr/local/bin/ @@ -22,7 +22,7 @@ RUN cargo binstall -y \ cargo-chef@0.1 \ cargo-hack@0.6 \ cargo-machete@0.7 \ - cargo-mutants@24.11 \ + cargo-mutants@25.0 \ release-plz@0.3 COPY entrypoint.sh /