From 670d8cb83a7e256c3b6acc143cb76ee81d65681c Mon Sep 17 00:00:00 2001 From: Aiden McClelland Date: Sat, 26 Sep 2020 14:02:47 -0600 Subject: [PATCH] add arm target to alpine container --- hooks/arches.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hooks/arches.sh b/hooks/arches.sh index 14c53e2..7bd52c4 100644 --- a/hooks/arches.sh +++ b/hooks/arches.sh @@ -21,5 +21,8 @@ esac if [[ "${DOCKER_TAG}" == *alpine ]]; then # The Alpine build currently only works for amd64. os_suffix=.alpine - arches=(amd64) + arches=( + amd64 + arm32v7 + ) fi