From a9256f8ba444d81204535227f1c02adb6e0a1df6 Mon Sep 17 00:00:00 2001 From: Ryan Malloy Date: Thu, 21 May 2026 10:31:30 -0600 Subject: [PATCH] coredns/Dockerfile: update plugin module path to git.supported.systems Aligns the placeholder with the actual plugin repo at https://git.supported.systems/rsp2k/coredns-rfc2136 (created and populated via tea in Phase 1.2). Originally written as a guess at git.supportedsystems.net; correcting now that the repo exists. --- coredns/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coredns/Dockerfile b/coredns/Dockerfile index 3df04c6..e686aab 100644 --- a/coredns/Dockerfile +++ b/coredns/Dockerfile @@ -22,7 +22,7 @@ RUN git clone --depth 1 --branch ${COREDNS_REF} https://github.com/coredns/cored # Inject our plugin into plugin.cfg. Must come BEFORE the `cache` plugin # so authoritative answers from rfc2136 aren't intercepted by cache. -ARG PLUGIN_REPO=git.supportedsystems.net/rpm/coredns-rfc2136 +ARG PLUGIN_REPO=git.supported.systems/rsp2k/coredns-rfc2136 ARG PLUGIN_REF=latest RUN sed -i "/^cache:cache$/i rfc2136:${PLUGIN_REPO}" plugin.cfg && \ go get ${PLUGIN_REPO}@${PLUGIN_REF}