From 7793609fa461c4d02b56fd833844bcc19b67b223 Mon Sep 17 00:00:00 2001 From: Jakob Ketterl Date: Mon, 23 Dec 2019 19:11:47 +0000 Subject: [PATCH] alpine is available for all archs now, but 3.11 produces segfaults :( --- build.sh | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/build.sh b/build.sh index acfb0f5..ff47d27 100755 --- a/build.sh +++ b/build.sh @@ -3,17 +3,7 @@ set -euxo pipefail ARCH=$(uname -m) -case $ARCH in - x86_64) - BASE_IMAGE=alpine - ;; - armv*) - BASE_IMAGE=arm32v6/alpine - ;; - aarch64) - BASE_IMAGE=alpine - ;; -esac +BASE_IMAGE=alpine:3.10 TAGS=$ARCH