fix(): var extension conflict

pull/59/head
Magicalex 2020-06-05 02:55:38 +02:00
parent 1680d3fd3d
commit 86080a0a3c
No known key found for this signature in database
GPG Key ID: A89B48B1788C3CB5
1 changed files with 2 additions and 2 deletions

View File

@ -33,8 +33,8 @@ fi
# Install additional php extensions
if [ -n "${PHP_EXTENSIONS}" ]; then
for extension in ${PHP_EXTENSIONS}; do
PACKAGES="php7-${extension} ${PACKAGES}"
for php_extension in ${PHP_EXTENSIONS}; do
PACKAGES="php7-${php_extension} ${PACKAGES}"
done
apk add --no-progress --no-cache ${PACKAGES}