Skip to content

Commit b31978f

Browse files
committed
fix(docker-library): disable s390x support for satosa:alpine images
A SATOSA dependency requires Rust to build, but Rust doesn't support the s390x-unknown-linux-musl platform. Cf. #1
1 parent 70c600b commit b31978f

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

generate-stackbrew-library.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,13 @@ for version; do
140140
;;
141141
esac
142142

143+
case "$v" in
144+
alpine*)
145+
# https://github.com/IdentityPython/satosa-docker/issues/1
146+
variantArches="$(sed <<<" $variantArches " -e 's/ s390x / /g')"
147+
;;
148+
esac
149+
143150
sharedTags=()
144151
for windowsShared in windowsservercore nanoserver; do
145152
if [[ "$variant" == "$windowsShared"* ]]; then

0 commit comments

Comments
 (0)