From ed3369a69856d34a9fb06a0aa678da209f662373 Mon Sep 17 00:00:00 2001 From: Luigi Cruz Date: Tue, 9 Nov 2021 15:30:43 -0300 Subject: [PATCH] change i386 to arm32v7 docker --- build-docker.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-docker.sh b/build-docker.sh index 85200e4..f8b7e3d 100755 --- a/build-docker.sh +++ b/build-docker.sh @@ -78,7 +78,7 @@ BUILD_OPTS="$(echo "${BUILD_OPTS:-}" | sed -E 's@\-c\s?([^ ]+)@-c /config@')" # Check the arch of the machine we're running on. If it's 64-bit, use a 32-bit base image instead case "$(uname -m)" in x86_64|aarch64) - BASE_IMAGE=i386/debian:bullseye + BASE_IMAGE=arm32v7/debian:bullseye ;; *) BASE_IMAGE=debian:bullseye