Merge pull request #1504 from dougblackjr/master

Adding pcntl to php-fpm, php-worker, addresses #1419
This commit is contained in:
Shao Yu-Lung (Allen)
2018-05-27 10:08:53 +08:00
committed by GitHub
3 changed files with 12 additions and 1 deletions

View File

@ -175,6 +175,16 @@ RUN if [ ${INSTALL_ZIP_ARCHIVE} = true ]; then \
docker-php-ext-install zip \
;fi
###########################################################################
# pcntl
###########################################################################
ARG INSTALL_PCNTL=false
RUN if [ ${INSTALL_PCNTL} = true]; then \
# Installs pcntl, helpful for running Horizon
docker-php-ext-install pcntl \
;fi
###########################################################################
# bcmath:
###########################################################################