From d8f1b3c1518fd678acaf53eebf2723332bbd7c18 Mon Sep 17 00:00:00 2001 From: tritao Date: Mon, 3 Feb 2025 15:27:59 +0000 Subject: [PATCH] Fix `build-publish-master-image` CI by upgrading Rust version in Dockerfile. --- deployment/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployment/Dockerfile b/deployment/Dockerfile index 10868781760..5554de79bf3 100644 --- a/deployment/Dockerfile +++ b/deployment/Dockerfile @@ -1,5 +1,5 @@ # Stage 1: Build -FROM lukemathwalker/cargo-chef:latest-rust-1.79 as chef +FROM lukemathwalker/cargo-chef:latest-rust-1.83 as chef WORKDIR /build/ # hadolint ignore=DL3008 RUN apt-get update && \