Merge pull request #3057 from marcos-kubis-mk/master

Add php trader extension
This commit is contained in:
Shao Yu-Lung (Allen)
2021-09-22 17:24:36 +08:00
committed by GitHub
4 changed files with 32 additions and 0 deletions

View File

@ -1031,6 +1031,19 @@ RUN if [ ${INSTALL_WKHTMLTOPDF} = true ]; then \
&& apt -f install \
;fi
#####################################
# trader:
#####################################
USER root
ARG INSTALL_TRADER=false
RUN if [ ${INSTALL_TRADER} = true ]; then \
pecl install trader \
&& echo "extension=trader.so" >> $PHP_INI_DIR/conf.d/trader.ini \
;fi
###########################################################################
# Mailparse extension:
###########################################################################