xsl support added (feature for magento 2) (#1995)

* Update php-fpm Dockerfile
* Update workspace Dockerfile
* Update env-example
This commit is contained in:
scappuccino
2019-02-16 16:03:42 +01:00
committed by Shao Yu-Lung (Allen)
parent 739e8d3448
commit ee2db98c61
3 changed files with 28 additions and 0 deletions

View File

@ -229,6 +229,20 @@ RUN if [ ${INSTALL_SOAP} = true ]; then \
apt-get -y install libxml2-dev php${LARADOCK_PHP_VERSION}-soap \
;fi
###########################################################################
# XSL:
###########################################################################
USER root
ARG INSTALL_XSL=false
RUN if [ ${INSTALL_XSL} = true ]; then \
# Install the PHP XSL extension
apt-get -y install libxslt-dev php${LARADOCK_PHP_VERSION}-xsl \
;fi
###########################################################################
# LDAP:
###########################################################################