Update `generate-stackbrew-library.sh` to support `BASHBREW_LIBRARY` for easier cascading updates

See https://github.com/docker-library/official-images/pull/17640#issuecomment-2380308790
This commit is contained in:
Tianon Gravi 2024-09-30 11:28:39 -07:00
parent 3056c115a9
commit bebe68a7d5
1 changed files with 8 additions and 6 deletions

View File

@ -35,17 +35,19 @@ dirCommit() {
getArches() { getArches() {
local repo="$1"; shift local repo="$1"; shift
local officialImagesUrl='https://github.com/docker-library/official-images/raw/master/library/' local officialImagesBase="${BASHBREW_LIBRARY:-https://github.com/docker-library/official-images/raw/HEAD/library}/"
eval "declare -g -A parentRepoToArches=( $( local parentRepoToArchesStr
find -name 'Dockerfile' -exec awk ' parentRepoToArchesStr="$(
find -name 'Dockerfile' -exec awk -v officialImagesBase="$officialImagesBase" '
toupper($1) == "FROM" && $2 !~ /^('"$repo"'|scratch|.*\/.*)(:|$)/ { toupper($1) == "FROM" && $2 !~ /^('"$repo"'|scratch|.*\/.*)(:|$)/ {
print "'"$officialImagesUrl"'" $2 printf "%s%s\n", officialImagesBase, $2
} }
' '{}' + \ ' '{}' + \
| sort -u \ | sort -u \
| xargs bashbrew cat --format '[{{ .RepoName }}:{{ .TagName }}]="{{ join " " .TagEntry.Architectures }}"' | xargs -r bashbrew cat --format '["{{ .RepoName }}:{{ .TagName }}"]="{{ join " " .TagEntry.Architectures }}"'
) )" )"
eval "declare -g -A parentRepoToArches=( $parentRepoToArchesStr )"
} }
getArches 'httpd' getArches 'httpd'