From cbcdbcf9038c13df7d5be8ccfbff3839bc3f10d4 Mon Sep 17 00:00:00 2001 From: Benjamin Elder Date: Thu, 7 May 2026 18:08:22 -0700 Subject: [PATCH] fix glibc-dns-testing image build --- test/images/glibc-dns-testing/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/images/glibc-dns-testing/Dockerfile b/test/images/glibc-dns-testing/Dockerfile index 714ac32179a..62875456b07 100644 --- a/test/images/glibc-dns-testing/Dockerfile +++ b/test/images/glibc-dns-testing/Dockerfile @@ -27,10 +27,12 @@ ARG BASEIMAGE FROM $BASEIMAGE +ARG TARGETARCH + RUN apt-get update && \ apt-get install -y dnsutils && \ apt-get clean && \ rm -rf /var/lib/apt/lists/* -ADD https://github.com/coredns/coredns/releases/download/v1.5.0/coredns_1.5.0_linux_BASEARCH.tgz /coredns.tgz +ADD https://github.com/coredns/coredns/releases/download/v1.5.0/coredns_1.5.0_linux_${TARGETARCH}.tgz /coredns.tgz RUN tar -xzvf /coredns.tgz && rm -f /coredns.tgz