mirror of
https://github.com/docker-library/ruby.git
synced 2022-11-09 11:41:34 -05:00
230d21cfe8
Since Ruby 2.4 is the latest release, it should be considered the default ‘2’ version.
84 lines
1.8 KiB
Bash
Executable file
84 lines
1.8 KiB
Bash
Executable file
#!/bin/bash
|
|
set -eu
|
|
|
|
declare -A aliases=(
|
|
[2.4]='2 latest'
|
|
)
|
|
|
|
self="$(basename "$BASH_SOURCE")"
|
|
cd "$(dirname "$(readlink -f "$BASH_SOURCE")")"
|
|
|
|
versions=( */ )
|
|
versions=( "${versions[@]%/}" )
|
|
|
|
# get the most recent commit which modified any of "$@"
|
|
fileCommit() {
|
|
git log -1 --format='format:%H' HEAD -- "$@"
|
|
}
|
|
|
|
# get the most recent commit which modified "$1/Dockerfile" or any file COPY'd from "$1/Dockerfile"
|
|
dirCommit() {
|
|
local dir="$1"; shift
|
|
(
|
|
cd "$dir"
|
|
fileCommit \
|
|
Dockerfile \
|
|
$(git show HEAD:./Dockerfile | awk '
|
|
toupper($1) == "COPY" {
|
|
for (i = 2; i < NF; i++) {
|
|
print $i
|
|
}
|
|
}
|
|
')
|
|
)
|
|
}
|
|
|
|
cat <<-EOH
|
|
# this file is generated via https://github.com/docker-library/ruby/blob/$(fileCommit "$self")/$self
|
|
|
|
Maintainers: Tianon Gravi <admwiggin@gmail.com> (@tianon),
|
|
Joseph Ferguson <yosifkit@gmail.com> (@yosifkit)
|
|
GitRepo: https://github.com/docker-library/ruby.git
|
|
EOH
|
|
|
|
# prints "$2$1$3$1...$N"
|
|
join() {
|
|
local sep="$1"; shift
|
|
local out; printf -v out "${sep//%/%%}%s" "$@"
|
|
echo "${out#$sep}"
|
|
}
|
|
|
|
for version in "${versions[@]}"; do
|
|
commit="$(dirCommit "$version")"
|
|
|
|
fullVersion="$(git show "$commit":"$version/Dockerfile" | awk '$1 == "ENV" && $2 == "RUBY_VERSION" { print $3; exit }')"
|
|
|
|
versionAliases=(
|
|
$fullVersion
|
|
$version
|
|
${aliases[$version]:-}
|
|
)
|
|
|
|
echo
|
|
cat <<-EOE
|
|
Tags: $(join ', ' "${versionAliases[@]}")
|
|
GitCommit: $commit
|
|
Directory: $version
|
|
EOE
|
|
|
|
for variant in slim alpine onbuild; do
|
|
[ -f "$version/$variant/Dockerfile" ] || continue
|
|
|
|
commit="$(dirCommit "$version/$variant")"
|
|
|
|
variantAliases=( "${versionAliases[@]/%/-$variant}" )
|
|
variantAliases=( "${variantAliases[@]//latest-/}" )
|
|
|
|
echo
|
|
cat <<-EOE
|
|
Tags: $(join ', ' "${variantAliases[@]}")
|
|
GitCommit: $commit
|
|
Directory: $version/$variant
|
|
EOE
|
|
done
|
|
done
|