From 0b15e44f6bd86d7882fdb70e0bfd36f7ed77e0bb Mon Sep 17 00:00:00 2001 From: Eric Rakestraw Date: Sun, 1 Feb 2026 20:52:52 -0600 Subject: [PATCH] Update the build to install slapd before slapd-contrib, since apt-get was hitting a race condition when they were both selected for install at the same time. --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1d9e10b..1351f75 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,8 @@ LABEL description="OpenLDAP" \ version="Ubuntu 24.04" # Install the necessary packages for LDAP Proxy server -RUN apt-get -q update && apt-get install -q --yes slapd slapd-contrib ldap-utils +RUN apt-get -q update && apt-get install -q --yes slapd +RUN apt-get -q update && apt-get install -q --yes slapd-contrib ldap-utils # Remove the slapd.d directory, since we will be using slapd.conf. RUN rm -rf /etc/ldap/slapd.d