diff options
author | 2023-08-08 18:13:11 -0700 | |
---|---|---|
committer | 2023-08-08 21:13:11 -0400 | |
commit | 932049c6e04abce7c1c2545bbb2bfc67bbf9fc9b (patch) | |
tree | 3343a4d03dc61f461e3f26605e3418cb91e81b8d | |
parent | 9f4aa9d2625bb8b8f13efa98d3ecf1928cd112b6 (diff) | |
download | coredns-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>
-rw-r--r-- | Makefile.docker | 2 |
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. |