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:
parent
d910f614a5
commit
687136d26b
8 changed files with 58 additions and 18 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue