added IMAP extension to workspace

This commit is contained in:
Jeroen van Oort
2017-11-06 11:12:02 +01:00
parent 4e486280f4
commit 23ee4f6679
5 changed files with 41 additions and 0 deletions

View File

@ -82,6 +82,18 @@ RUN if [ ${INSTALL_LDAP} = true ]; then \
apt-get install -y php7.1-ldap \
;fi
#####################################
# IMAP:
#####################################
ARG INSTALL_IMAP=false
ENV INSTALL_IMAP ${INSTALL_IMAP}
RUN if [ ${INSTALL_IMAP} = true ]; then \
apt-get update -yqq && \
apt-get install -y php7.1-imap \
;fi
#####################################
# Set Timezone
#####################################