fix: add missing openldap-overlay-syncprov package
All checks were successful
CI Pipeline / push (push) Successful in 22s
CI Pipeline / update-cd (push) Successful in 14s
CI Pipeline / lint (push) Successful in 21s
CI Pipeline / build (push) Successful in 1m13s
CI Pipeline / test (push) Successful in 57s
CI Pipeline / security-scan (push) Successful in 1m20s
CI Pipeline / autotag (push) Successful in 22s

The syncprov.so module was being loaded in init-config.sh but the
required Alpine package was not installed, causing slapadd to fail
with "file not found" error.
This commit is contained in:
Patrick de Ruiter 2025-12-26 04:15:33 +01:00
parent 1b24516663
commit 11bead045f
Signed by: pderuiter
GPG Key ID: 5EBA7F21CF583321

View File

@ -12,6 +12,7 @@ RUN apk add --no-cache \
openldap-overlay-refint \ openldap-overlay-refint \
openldap-overlay-unique \ openldap-overlay-unique \
openldap-overlay-ppolicy \ openldap-overlay-ppolicy \
openldap-overlay-syncprov \
openssl \ openssl \
argon2 \ argon2 \
&& mkdir -p /var/lib/openldap/openldap-data \ && mkdir -p /var/lib/openldap/openldap-data \