Adding support for IMAP on php-worker
This commit is contained in:
@ -217,6 +217,18 @@ RUN if [ ${INSTALL_TAINT} = true ]; then \
|
||||
docker-php-ext-enable taint \
|
||||
;fi
|
||||
|
||||
###########################################################################
|
||||
# Imap EXTENSION
|
||||
###########################################################################
|
||||
|
||||
ARG INSTALL_IMAP=false
|
||||
|
||||
RUN if [ ${INSTALL_IMAP} = true ]; then \
|
||||
apk add --update imap-dev openssl-dev && \
|
||||
docker-php-ext-configure imap --with-imap --with-imap-ssl && \
|
||||
docker-php-ext-install imap \
|
||||
;fi
|
||||
|
||||
#
|
||||
#--------------------------------------------------------------------------
|
||||
# Optional Supervisord Configuration
|
||||
|
Reference in New Issue
Block a user