From 76c7ad352f7a0f411183d1fb3c0447e25d0be952 Mon Sep 17 00:00:00 2001 From: Maksym Sobolyev Date: Fri, 26 Jul 2024 00:39:27 -0700 Subject: [PATCH] Prevent removal of the ca-certificates, so that there is no warnings while building based on this image. --- docker/install_depends.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/docker/install_depends.sh b/docker/install_depends.sh index cf8b7d005..82798fc11 100755 --- a/docker/install_depends.sh +++ b/docker/install_depends.sh @@ -16,6 +16,7 @@ then echo "deb [signed-by=/usr/share/keyrings/llvm.gpg] http://apt.llvm.org/bookworm/ llvm-toolchain-bookworm-${CLANG_VER} main" > /etc/apt/sources.list.d/llvm.list curl https://apt.llvm.org/llvm-snapshot.gpg.key | gpg --dearmor > /usr/share/keyrings/llvm.gpg apt-get -y update -qq + apt-mark hold ca-certificates fi ${APT_INSTALL} ${LIB_DEPS} ${BUILD_DEPS}