Added option to install the php calendar extension in php-fpm (#1672)

* Added option to install the php calendar extension in php-fpm
* Added section about installing php calendar extension in php-fpm
This commit is contained in:
Youri Westerman
2018-07-13 17:31:13 +07:00
committed by Shao Yu-Lung (Allen)
parent 20b0181b6d
commit 4ce25e95b4
4 changed files with 28 additions and 0 deletions

View File

@ -469,6 +469,19 @@ RUN if [ ${INSTALL_IMAP} = true ]; then \
docker-php-ext-install imap \
;fi
###########################################################################
# Calendar:
###########################################################################
USER root
ARG INSTALL_CALENDAR=false
RUN if [ ${INSTALL_CALENDAR} = true ]; then \
docker-php-ext-configure calendar && \
docker-php-ext-install calendar \
;fi
###########################################################################
# Check PHP version:
###########################################################################