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

@ -92,6 +92,18 @@ RUN if [ ${INSTALL_SOAP} = true ]; then \
docker-php-ext-install soap \
;fi
###########################################################################
# XSL:
###########################################################################
ARG INSTALL_XSL=false
RUN if [ ${INSTALL_XSL} = true ]; then \
# Install the xsl extension
apt-get -y install libxslt-dev && \
docker-php-ext-install xsl \
;fi
###########################################################################
# pgsql
###########################################################################