Add OS libraries for ldaps

This commit is contained in:
Markus Opolka
2023-07-09 12:09:45 +02:00
parent eca133264d
commit 6b109ed5bb
6 changed files with 20 additions and 2 deletions

View File

@@ -2,7 +2,12 @@ FROM docker.io/php:8.0-fpm-alpine
LABEL maintainer="markus@martialblog.de"
# Install OS dependencies
RUN apk add --no-cache netcat-openbsd bash
RUN set -ex; \
apk add --no-cache \
netcat-openbsd \
libsasl \
libldap \
bash
# Install PHP Plugins
# hadolint ignore=SC2086