From c5adb3c50fdc3d01a6d2a17b72fb898bdf9f9bc6 Mon Sep 17 00:00:00 2001 From: Peter Somogyvari Date: Wed, 15 Mar 2023 15:31:08 -0700 Subject: [PATCH] test(ghcr-rust-compiler): fix image rust build openssl-src v111.25.1 Upgraded the container image's base image so that the Rust compiler that is being used is now v1.68.0 instead of v1.57.0. Fixes #2325 Signed-off-by: Peter Somogyvari --- tools/docker/rust-compiler/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/docker/rust-compiler/Dockerfile b/tools/docker/rust-compiler/Dockerfile index e70466317e..ec5b20be36 100644 --- a/tools/docker/rust-compiler/Dockerfile +++ b/tools/docker/rust-compiler/Dockerfile @@ -1,4 +1,4 @@ -FROM rust:1.57.0-slim-bullseye +FROM rust:1.68.0-slim-bullseye RUN apt update