From 49d89ccc1914ba3f34c4da23e67c0c96e554ef02 Mon Sep 17 00:00:00 2001 From: Jose Alvarez Date: Tue, 15 Feb 2022 11:36:11 +0100 Subject: [PATCH] Updated DockerFile to use same toolchain version as the project's rust-toolchain.toml file one (#801) --- Dockerfile | 3 ++- rust-toolchain.toml | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4af8afac4..5170bbdb3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,6 @@ # Build Image -FROM rust:1.56.0-slim-buster as builder +# match with version in rust-toolchain.toml file +FROM rust:1.58.0-slim-buster as builder RUN set -ex; \ apt-get update; \ diff --git a/rust-toolchain.toml b/rust-toolchain.toml index c8dab6ae3..53e7310d8 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,2 +1,3 @@ [toolchain] +# match with version in DockerFile channel = "1.58.0"