From 6ba8565619c7d97478a6012ad2410126ab5ce377 Mon Sep 17 00:00:00 2001 From: Mark Hansen Date: Wed, 5 Feb 2020 19:16:52 +1100 Subject: [PATCH] Add armv6 docker image (#6605) This follows the approach used to generate armv7 images. It was all so nicely factored already that I just had to update two parts of the code. Signed-off-by: Mark Hansen --- .dockerignore | 1 + Makefile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.dockerignore b/.dockerignore index 486d44ad9..1266da8eb 100644 --- a/.dockerignore +++ b/.dockerignore @@ -3,6 +3,7 @@ data/ .tarballs/ !.build/linux-amd64/ +!.build/linux-armv6/ !.build/linux-armv7/ !.build/linux-arm64/ !.build/linux-s390x/ diff --git a/Makefile b/Makefile index 1b8a448a1..a1c2e1d3a 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 s390x +DOCKER_ARCHS ?= amd64 armv6 armv7 arm64 s390x REACT_APP_PATH = web/ui/react-app REACT_APP_SOURCE_FILES = $(wildcard $(REACT_APP_PATH)/public/* $(REACT_APP_PATH)/src/* $(REACT_APP_PATH)/tsconfig.json)