From 08ce142fe5e37e92e636808f1d410b9a0a5003b0 Mon Sep 17 00:00:00 2001 From: Tam Mach Date: Sat, 11 Jul 2026 18:24:38 +1000 Subject: [PATCH] fix: bump pinned libtinfo5 to 6.3-2ubuntu0.2 in builder image The Ubuntu package pool (archive.ubuntu.com / ports.ubuntu.com) only retains the latest point-release of a package. Ubuntu published libtinfo5 6.3-2ubuntu0.2, pruning 6.3-2ubuntu0.1 from the pool, so the pinned download in Dockerfile.builder now 404s and the multi-arch builder image build fails with curl exit 22 on both amd64 and arm64. Signed-off-by: Tam Mach --- Dockerfile.builder | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.builder b/Dockerfile.builder index 72c5019ce..e5b7149bc 100644 --- a/Dockerfile.builder +++ b/Dockerfile.builder @@ -43,7 +43,7 @@ RUN apt-get update && \ # LLVM_VERSION must match MIN_CLANG_VERSION in the Makefile; bump both together # (deliberately, alongside Envoy upgrades) rather than via automated updates. ENV LLVM_VERSION=18.1.8 -ENV LIBTINFO5_VERSION=6.3-2ubuntu0.1 +ENV LIBTINFO5_VERSION=6.3-2ubuntu0.2 RUN case "$TARGETARCH" in \ amd64) LLVM_ARCH=x86_64-linux-gnu-ubuntu-18.04; TINFO_MIRROR=http://archive.ubuntu.com/ubuntu ;; \ arm64) LLVM_ARCH=aarch64-linux-gnu; TINFO_MIRROR=http://ports.ubuntu.com/ubuntu-ports ;; \