support php-xmlrpc extension

This commit is contained in:
Shao Yu Lung
2020-06-17 00:05:03 +08:00
parent 12ade0d730
commit 35081fd9be
5 changed files with 36 additions and 0 deletions

View File

@ -281,6 +281,16 @@ RUN if [ ${INSTALL_IMAP} = true ]; then \
docker-php-ext-install imap \
;fi
###########################################################################
# XMLRPC:
###########################################################################
ARG INSTALL_XMLRPC=false
RUN if [ ${INSTALL_XMLRPC} = true ]; then \
docker-php-ext-install xmlrpc \
;fi
#
#--------------------------------------------------------------------------
# Optional Supervisord Configuration