Merge pull request #1298 from nm777/bug/issue-1296-php56-ldap-in-workspace

Add LDAP support to PHP 5.6 workspace
This commit is contained in:
Mahmoud Zalt 2017-12-06 21:36:32 +01:00 committed by GitHub
commit f22ceb71ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -72,6 +72,19 @@ RUN if [ ${INSTALL_SOAP} = true ]; then \
apt-get -y install libxml2-dev php5.6-soap \
;fi
#####################################
# LDAP:
#####################################
ARG INSTALL_LDAP=false
ENV INSTALL_LDAP ${INSTALL_LDAP}
RUN if [ ${INSTALL_LDAP} = true ]; then \
apt-get update -yqq && \
apt-get install -y libldap2-dev && \
apt-get install -y php5.6-ldap \
;fi
#####################################
# IMAP:
#####################################