From 285368a757bbab8ee62eadb8e25973c65a55712d Mon Sep 17 00:00:00 2001 From: Maximilian Schmidt Date: Wed, 2 Oct 2024 19:04:42 +0200 Subject: [PATCH] prefix with docker.io (#1451) --- tools/ci/github-runners/Containerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/ci/github-runners/Containerfile b/tools/ci/github-runners/Containerfile index f76d0260a4..004814ba79 100644 --- a/tools/ci/github-runners/Containerfile +++ b/tools/ci/github-runners/Containerfile @@ -1,6 +1,7 @@ -FROM rust:1.78.0 +FROM docker.io/rust:1.78.0 RUN apt-get update && apt-get install --no-install-recommends --yes \ + buildah \ clang \ cmake \ git-lfs \