From 11bead045f83f892baeccebf9650a964c58eb428 Mon Sep 17 00:00:00 2001 From: Patrick de Ruiter Date: Fri, 26 Dec 2025 04:15:33 +0100 Subject: [PATCH] fix: add missing openldap-overlay-syncprov package 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. --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 73c7255..a5fa95c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,6 +12,7 @@ RUN apk add --no-cache \ openldap-overlay-refint \ openldap-overlay-unique \ openldap-overlay-ppolicy \ + openldap-overlay-syncprov \ openssl \ argon2 \ && mkdir -p /var/lib/openldap/openldap-data \