aboutsummaryrefslogtreecommitdiff
path: root/Makefile.docker
diff options
context:
space:
mode:
authorGravatar Yong Tang <yong.tang.github@outlook.com> 2023-08-08 18:13:11 -0700
committerGravatar GitHub <noreply@github.com> 2023-08-08 21:13:11 -0400
commit932049c6e04abce7c1c2545bbb2bfc67bbf9fc9b (patch)
tree3343a4d03dc61f461e3f26605e3418cb91e81b8d /Makefile.docker
parent9f4aa9d2625bb8b8f13efa98d3ecf1928cd112b6 (diff)
downloadcoredns-932049c6e04abce7c1c2545bbb2bfc67bbf9fc9b.tar.gz
coredns-932049c6e04abce7c1c2545bbb2bfc67bbf9fc9b.tar.zst
coredns-932049c6e04abce7c1c2545bbb2bfc67bbf9fc9b.zip
Fix docker release as mips64le is not avail (#6246)
Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
Diffstat (limited to 'Makefile.docker')
-rw-r--r--Makefile.docker2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.docker b/Makefile.docker
index ef73c00a9..fb8cb8efe 100644
--- a/Makefile.docker
+++ b/Makefile.docker
@@ -34,7 +34,7 @@ GITHUB:=https://github.com/coredns/coredns/releases/download
# mips is not in LINUX_ARCH because it's not supported by docker manifest. Keep this list in sync with the one in Makefile.release
LINUX_ARCH:=amd64 arm arm64 mips64le ppc64le s390x riscv64
DOCKER_IMAGE_NAME:=$(DOCKER)/$(NAME)
-DOCKER_IMAGE_LIST_VERSIONED:=$(shell echo $(LINUX_ARCH) | sed -e "s~[^ ]*~$(DOCKER_IMAGE_NAME):&\-$(VERSION)~g")
+DOCKER_IMAGE_LIST_VERSIONED:=$(shell echo $(LINUX_ARCH) | sed -e "s~mips64le ~~g" | sed -e "s~[^ ]*~$(DOCKER_IMAGE_NAME):&\-$(VERSION)~g")
all:
@echo Use the 'release' target to download released binaries and build containers per arch, 'docker-push' to build and push a multi arch manifest.