diff --git a/.dockerignore b/.dockerignore index 1266da8eb12a83cd78fafcc166259f4a5281382d..486d44ad9eed0a31f4933c6568168ce76bac0ca5 100644 --- a/.dockerignore +++ b/.dockerignore @@ -3,7 +3,6 @@ data/ .tarballs/ !.build/linux-amd64/ -!.build/linux-armv6/ !.build/linux-armv7/ !.build/linux-arm64/ !.build/linux-s390x/ diff --git a/Makefile b/Makefile index a1c2e1d3abcc815b1188947a6668f08b4bf6976c..1b8a448a1ce1b40ee32fb57fce5bb44353d1304c 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 armv6 armv7 arm64 s390x +DOCKER_ARCHS ?= amd64 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)