dockerfiles/bookworm_php8/Dockerfile-base
Jan Dittberner d2dfa332d3 Work on Bookworm image nss-ldap
The classic libnss-ldap has been removed from Bookworm. nslcd is needed
to make the new libnss-ldapd work.
2024-02-10 11:39:58 +01:00

36 lines
811 B
Text

FROM debian:bookworm
LABEL maintainer="jan@dittberner.info"
VOLUME /srv
RUN apt-get update \
&& DEBIAN_FRONTEND=noninteractive \
apt-get install -y --no-install-recommends \
ca-certificates \
dumb-init \
libnss-ldapd \
nullmailer \
openssl \
php-mail-mime \
php-net-smtp \
php-net-socket \
php8.2 \
php8.2-curl \
php8.2-fpm \
php8.2-fpm \
php8.2-gd \
php8.2-imagick \
php8.2-imap \
php8.2-intl \
php8.2-mbstring \
php8.2-opcache \
php8.2-pspell \
php8.2-sqlite3 \
php8.2-zip \
psmisc \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*.*
# broken as of Tue Nov 15 07:42:37 CET 2022
# php-mail https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1000653
ADD --chown=root:root nsswitch.conf nslcd.conf /etc/