From ce5d523596c457511efd68fab8dd761e2dbcd4c0 Mon Sep 17 00:00:00 2001 From: vitt-bagal <31851690+vitt-bagal@users.noreply.github.com> Date: Tue, 9 Jun 2020 20:00:55 +0530 Subject: [PATCH] Add image build for s390x architecture (#2289) * Add suport for s390x Signed-off-by: Nayana * Added s390x support to docker image Signed-off-by: vitthalb@us.ibm.com Co-authored-by: Nayana --- .dockerignore | 1 + Makefile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.dockerignore b/.dockerignore index 107d813b8..6e6480b59 100644 --- a/.dockerignore +++ b/.dockerignore @@ -5,3 +5,4 @@ !.build/linux-armv7/ !.build/linux-arm64/ !.build/linux-ppc64le/ +!.build/linux-s390x/ diff --git a/Makefile b/Makefile index 2c109ca79..361190889 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,7 @@ # limitations under the License. # Needs to be defined before including Makefile.common to auto-generate targets -DOCKER_ARCHS ?= amd64 armv7 arm64 ppc64le +DOCKER_ARCHS ?= amd64 armv7 arm64 ppc64le s390x include Makefile.common