From ccc81b1da44e40b6b1968ad291dabdb8e6c9fcdd Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 18 Oct 2024 03:48:19 +0000 Subject: [PATCH] Update rust Docker tag to v1.82.0 --- src/abacus/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/abacus/Dockerfile b/src/abacus/Dockerfile index 9273d5079c..e16adb6334 100644 --- a/src/abacus/Dockerfile +++ b/src/abacus/Dockerfile @@ -1,4 +1,4 @@ -FROM rust:1.81.0 AS builder +FROM rust:1.82.0 AS builder # Let's switch our working directory to `app` (equivalent to `cd app`) # The `app` folder will be created for us by Docker in case it does not # exist already. @@ -9,7 +9,7 @@ COPY . . RUN cargo build --release --bin=server -FROM rust:1.81.0 AS runtime +FROM rust:1.82.0 AS runtime WORKDIR app # Copy the compiled binary from the builder environment # to our runtime environment