From 96052d230a85d64fe6d9ee5fcf885a486b94bed7 Mon Sep 17 00:00:00 2001 From: Thomas P Date: Fri, 20 Oct 2023 19:17:03 +0200 Subject: [PATCH] Docker images > 1.17.0 are broken because of wrong baseimage (#33709) fix(dockerfile): make sure to use the bullseye image for building Solana's release image is based on bullseye, make sure we compile Solana with the same environment --- ci/docker-rust/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/docker-rust/Dockerfile b/ci/docker-rust/Dockerfile index 8dfc347d5..c15b21636 100644 --- a/ci/docker-rust/Dockerfile +++ b/ci/docker-rust/Dockerfile @@ -1,6 +1,6 @@ # Note: when the rust version is changed also modify # ci/rust-version.sh to pick up the new image tag -FROM rust:1.73.0 +FROM rust:1.73.0-bullseye ARG NODE_MAJOR=18