-
Christian Elberfeld authoredChristian Elberfeld authored
Dockerfile 333 B
FROM wordpress:5.7.0-php8.0-apache
# install the PHP extensions we need
RUN set -x \
&& apt-get update \
&& apt-get install -y libldap2-dev \
&& rm -rf /var/lib/apt/lists/* \
&& docker-php-ext-configure ldap --with-libdir=lib/x86_64-linux-gnu/ \
&& docker-php-ext-install ldap \
&& apt-get purge -y --auto-remove libldap2-dev