forked from docker-library/php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapply-templates.sh
executable file
·118 lines (99 loc) · 2.86 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
#!/usr/bin/env bash
set -Eeuo pipefail
[ -f versions.json ] # run "versions.sh" first
jqt='.jq-template.awk'
if [ -n "${BASHBREW_SCRIPTS:-}" ]; then
jqt="$BASHBREW_SCRIPTS/jq-template.awk"
elif [ "$BASH_SOURCE" -nt "$jqt" ]; then
# 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
[ -d "patches/$version" ] && hasPatches="true" || hasPatches="false"
export hasPatches
variants="$(jq -r '.[env.version].variants | map(@sh) | join(" ")' versions.json)"
eval "variants=( $variants )"
for dir in "${variants[@]}"; do
suite="$(dirname "$dir")" # "buster", etc
variant="$(basename "$dir")" # "cli", etc
export suite variant
alpineVer="${suite#alpine}" # "3.12", etc
if [ "$suite" != "$alpineVer" ]; then
from="alpine:$alpineVer"
else
from="debian:$suite-slim"
fi
export from alpineVer
case "$variant" in
apache) cmd='["apache2-foreground"]' ;;
fpm) cmd='["php-fpm"]' ;;
*) cmd='["php", "-a"]' ;;
esac
export cmd
echo "processing $version/$dir ..."
mkdir -p "$version/$dir"
{
generated_warning
gawk -f "$jqt" 'Dockerfile-linux.template'
} > "$version/$dir/Dockerfile"
cp -a \
docker-php-entrypoint \
docker-php-ext-* \
docker-php-source \
"$version/$dir/"
if [ "$variant" = 'apache' ]; then
cp -a apache2-foreground "$version/$dir/"
fi
if [ "$hasPatches" = true ]; then
tar -Jcf "$version/$suite/$variant/php_patches.tar.xz" \
--format=gnu \
--mode=755 \
--mtime='2000-01-01' \
--numeric-owner --owner=0 --group=0 \
--sort=name \
-C "patches/$version" \
"./"
sed -ri \
-e '/##<\/?patches>##/d' \
"$version/$suite/$variant/docker-php-source"
else
sed -ri \
-e '/##<patches>##/,/##<\/patches>##/d' \
"$version/$suite/$variant/docker-php-source"
fi
if [ "$version" = "5.6" ]; then
module_so_variant="required"
else
module_so_variant="optional"
fi
sed -ri \
-e "/##<module_so_${module_so_variant}>##/,/##<\/module_so_${module_so_variant}>##/d" \
"$version/$suite/$variant/docker-php-ext-enable"
sed -ri \
-e "/##<\/?module_so_(required|optional)>##/d" \
"$version/$suite/$variant/docker-php-ext-enable"
cmd="$(jq <<<"$cmd" -r '.[0]')"
if [ "$cmd" != 'php' ]; then
sed -i -e 's! php ! '"$cmd"' !g' "$version/$dir/docker-php-entrypoint"
fi
done
done