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:

committed by
Shao Yu-Lung (Allen)

parent
20b0181b6d
commit
4ce25e95b4
@ -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:
|
||||
###########################################################################
|
||||
|
Reference in New Issue
Block a user