2
0
Fork 0
mirror of https://github.com/friendica/docker synced 2025-12-07 13:57:07 +01:00

Add ldap support for ldapauth addon

This commit is contained in:
Philipp Holzer 2019-11-16 12:05:28 +01:00
commit 687136d26b
No known key found for this signature in database
GPG key ID: D8365C3D36B77D90
8 changed files with 58 additions and 18 deletions

View file

@ -33,6 +33,7 @@ RUN set -ex; \
libfreetype6-dev \
librsvg2-2 \
libzip-dev \
libldap2-dev \
; \
docker-php-ext-configure gd \
--with-gd \
@ -40,6 +41,9 @@ RUN set -ex; \
--with-png-dir=/usr/include/ \
--with-jpeg-dir=/usr/include/ \
; \
docker-php-ext-configure ldap \
--with-libdir=lib/x86_64-linux-gnu/ \
; \
docker-php-ext-install -j "$(nproc)" \
pdo_mysql \
gd \
@ -47,6 +51,7 @@ RUN set -ex; \
opcache \
ctype \
pcntl \
ldap \
; \
\
# pecl will claim success even if one install fails, so we need to perform each install separately