From cd3ca692a6e068c3e3e1ba89d5ac2c936708b170 Mon Sep 17 00:00:00 2001 From: "Phil E. Taylor" Date: Tue, 30 Jun 2020 12:44:09 +0100 Subject: [PATCH] add GMP and Mcrypt versions to update.sh --- update.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/update.sh b/update.sh index acded9d..a58c783 100755 --- a/update.sh +++ b/update.sh @@ -32,6 +32,7 @@ declare -A pecl_versions=( [php7-APCu]='5.1.18' [php7-memcached]='3.1.5' [php7-redis]='4.3.0' + [php7-mcrypt]='1.0.3' ) travisEnv= @@ -62,6 +63,7 @@ for phpVersion in "${phpVersions[@]}"; do -e 's!%%APCU_VERSION%%!'"${pecl_versions[$phpMajorVersion-APCu]}"'!g' \ -e 's!%%MEMCACHED_VERSION%%!'"${pecl_versions[$phpMajorVersion-memcached]}"'!g' \ -e 's!%%REDIS_VERSION%%!'"${pecl_versions[$phpMajorVersion-redis]}"'!g' \ + -e 's!%%MCRYPT_VERSION%%!'"${pecl_versions[$phpMajorVersion-mcrypt]}"'!g' \ -e 's!%%CMD%%!'"$cmd"'!g' \ "Dockerfile-${base}.template" > "$dir/Dockerfile"