-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapply-templates.sh
executable file
·67 lines (52 loc) · 1.6 KB
/
apply-templates.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#!/usr/bin/env bash
set -Eeuo pipefail
[ -f versions.json ] # run "versions.php" first
jqt='.jq-template.awk'
if [ ! -f "${jqt}" ]; then
echo "Downloading jq-template.awk ..."
# https://github.com/docker-library/bashbrew/blob/master/scripts/jq-template.awk
wget -qO "$jqt" 'https://github.com/docker-library/bashbrew/raw/9f6a35772ac863a0241f147c820354e4008edf38/scripts/jq-template.awk'
fi
if [ "$#" -eq 0 ]; then
versions="$(jq -r 'keys | map(@sh) | join(" ")' versions.json)"
eval "set -- $versions"
fi
generated_warning() {
cat <<-EOH
#
# NOTE: THIS DOCKERFILE IS GENERATED VIA "apply-templates.sh"
#
# PLEASE DO NOT EDIT IT DIRECTLY.
#
EOH
}
for version; do
export version
rm -rf "$version"
if jq -e '.[env.version] | not' versions.json > /dev/null; then
echo "deleting $version ..."
continue
fi
variants="$(jq -r '.[env.version].variants | map(@sh) | join(" ")' versions.json)"
latest_version="$(jq -r '.[env.version].version' versions.json)"
eval "variants=( $variants )"
for dir in "${variants[@]}"; do
if [[ $dir == *-*-* ]]; then
variant="${dir%-*}"
subvariant="${dir##*-}"
else
variant="$dir"
subvariant=""
fi
export variant subvariant
from="php:${latest_version}-${variant}"
export from
mkdir -p "$version/$dir"
cp -r conf.d "$version/$dir/"
echo "processing: ${version}/$dir ..."
{
generated_warning
gawk -f "$jqt" 'Dockerfile.template'
} > "$version/$dir/Dockerfile"
done
done