We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent febea33 commit 7f1fc5eCopy full SHA for 7f1fc5e
generate-stackbrew-library.sh
@@ -85,9 +85,8 @@ for version in "${versions[@]}"; do
85
86
parent="$(awk 'toupper($1) == "FROM" { print $2 }' <<<"$dockerfile")"
87
# no i386 for now: https://github.com/docker-library/gcc/issues/38
88
- arches="$(echo " ${parentRepoToArches[$parent]} " | sed -r -e 's/ i386 / /g')"
89
# no mips64le for now: https://github.com/docker-library/gcc/issues/67
90
- arches="$(echo " ${parentRepoToArches[$parent]} " | sed -r -e 's/ mips64le / /g')"
+ arches="$(echo " ${parentRepoToArches[$parent]} " | sed -r -e 's/ i386 / /g' -e 's/ mips64le / /g')"
91
92
echo
93
grep -m1 '^# Last Modified: ' <<<"$dockerfile"
0 commit comments