Add php trader extension

This commit is contained in:
Marcos Kubis
2021-09-19 17:48:42 -03:00
parent bc894b6ee0
commit 2dc5954bbf
4 changed files with 32 additions and 0 deletions

View File

@ -1029,6 +1029,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:
###########################################################################