summaryrefslogtreecommitdiffstats
path: root/update.sh
diff options
context:
space:
mode:
authorTilo Spannagel <development@tilosp.de>2017-08-27 10:58:21 +0200
committerTilo Spannagel <development@tilosp.de>2017-08-27 11:01:20 +0200
commit6a7a09903f2f16544a479c0a4a6e135f0f9b1b16 (patch)
treef12b6cf4d90182d5a164e728c8cf5f9b966ed4f3 /update.sh
parent261f545fabcbf4b1e4a1aa5400ee480be5ce629d (diff)
Remove end of life version 10.0
Diffstat (limited to 'update.sh')
-rwxr-xr-xupdate.sh7
1 files changed, 2 insertions, 5 deletions
diff --git a/update.sh b/update.sh
index da0d6ade..ad6efc48 100755
--- a/update.sh
+++ b/update.sh
@@ -26,17 +26,14 @@ for latest in "${latests[@]}"; do
continue
fi
- # Only add versions >= 10
- if version_greater_or_equal "$version" "10.0"; then
+ # Only add versions >= 11
+ if version_greater_or_equal "$version" "11.0"; then
for variant in apache fpm; do
# Create the version+variant directory with a Dockerfile.
mkdir -p "$version/$variant"
template="Dockerfile.template"
- if version_greater_or_equal "$version" "11.0"; then
- template="Dockerfile-php7.template"
- fi
cp "$template" "$version/$variant/Dockerfile"
echo "updating $latest [$version] $variant"