xsl support added (feature for magento 2) (#1995)
* Update php-fpm Dockerfile * Update workspace Dockerfile * Update env-example
This commit is contained in:

committed by
Shao Yu-Lung (Allen)

parent
739e8d3448
commit
ee2db98c61
@ -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
|
||||
###########################################################################
|
||||
|
Reference in New Issue
Block a user