From d995b885183dc130e0538658e5d9ef3ea0599716 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 3 Dec 2024 01:46:57 +0000 Subject: [PATCH] Update rust Docker tag to v1.83.0 --- src/abacus/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/abacus/Dockerfile b/src/abacus/Dockerfile index e16adb6334..2e04b54658 100644 --- a/src/abacus/Dockerfile +++ b/src/abacus/Dockerfile @@ -1,4 +1,4 @@ -FROM rust:1.82.0 AS builder +FROM rust:1.83.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.82.0 AS runtime +FROM rust:1.83.0 AS runtime WORKDIR app # Copy the compiled binary from the builder environment # to our runtime environment