We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 22ea1c0 + a176c80 commit 239a9ceCopy full SHA for 239a9ce
1 file changed
Dockerfile
@@ -23,6 +23,15 @@ RUN composer self-update --2
23
24
ADD conf/apache.conf /etc/apache2/sites-available/000-default.conf
25
26
+# LDAP INSTALLATION
27
+RUN set -x \
28
+ && apt-get update \
29
+ && apt-get install -y libldap2-dev \
30
+ && rm -rf /var/lib/apt/lists/* \
31
+ && docker-php-ext-configure ldap --with-libdir=lib/x86_64-linux-gnu/ \
32
+ && docker-php-ext-install ldap \
33
+ && apt-get purge -y --auto-remove libldap2-dev
34
+
35
RUN a2enmod rewrite
36
37
#ADD startScript.sh /startScript.sh
0 commit comments