From 0a2ec818460de68ad0e0e25b91da50ae4cf82dab Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 6 Sep 2024 01:43:25 +0000 Subject: [PATCH] Update rust Docker tag to v1.81.0 --- src/abacus/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/abacus/Dockerfile b/src/abacus/Dockerfile index 517fffcc5d..9273d5079c 100644 --- a/src/abacus/Dockerfile +++ b/src/abacus/Dockerfile @@ -1,4 +1,4 @@ -FROM rust:1.80.1 AS builder +FROM rust:1.81.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.80.1 AS runtime +FROM rust:1.81.0 AS runtime WORKDIR app # Copy the compiled binary from the builder environment # to our runtime environment