From 89ad4feb64700a0c66f0d80c80ae978d8399fec7 Mon Sep 17 00:00:00 2001 From: Bhavya Bahl Date: Mon, 15 Jul 2024 17:37:31 +0000 Subject: [PATCH] Add apt-get update in upstream image build (backport #7640) (#7684) --- .github/upstream/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/upstream/Dockerfile b/.github/upstream/Dockerfile index 006460c2477..610289f3108 100644 --- a/.github/upstream/Dockerfile +++ b/.github/upstream/Dockerfile @@ -38,6 +38,8 @@ ENV CXX "${cxx}" # Whether to build for TPUVM mode ENV TPUVM_MODE "${tpuvm}" +RUN apt-get update + # Install clang as upstream CI forces clang RUN apt-get install -y clang # Install valgrind