From bc1e1961c2874d49ba3d3f49f3b846b3d1a7a892 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Jan 2022 02:10:21 +0000 Subject: [PATCH] Bump rust from 1.58.0 to 1.58.1 in /src/abacus Bumps rust from 1.58.0 to 1.58.1. --- updated-dependencies: - dependency-name: rust dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- src/abacus/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/abacus/Dockerfile b/src/abacus/Dockerfile index eb94af685c..1c4184ba66 100644 --- a/src/abacus/Dockerfile +++ b/src/abacus/Dockerfile @@ -1,4 +1,4 @@ -FROM rust:1.58.0 AS builder +FROM rust:1.58.1 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.58.0 AS runtime +FROM rust:1.58.1 AS runtime WORKDIR app # Copy the compiled binary from the builder environment # to our runtime environment