fix:Add php xlswriter extension

This commit is contained in:
Wuweiming
2021-12-30 18:28:14 +08:00
parent 084fcaaf8b
commit c906356f46
3 changed files with 7 additions and 7 deletions

View File

@ -497,11 +497,11 @@ RUN set -eux; \
if [ ${INSTALL_XLSWRITER} = true ]; then \
# Install Php xlswriter Extension \
if [ $(php -r "echo PHP_MAJOR_VERSION;") > "5" ]; then \
pecl install xlswriter; \
docker-php-ext-enable xlswriter; \
pecl install xlswriter &&\
docker-php-ext-enable xlswriter &&\
php -m | grep -q 'xlswriter'; \
else \
echo "PHP Extension for xlswriter is not supported for PHP 5.0"\
echo "PHP Extension for xlswriter is not supported for PHP 5.0";\
fi \
;fi