From 9209f014affbf0336305491d8f99819649024461 Mon Sep 17 00:00:00 2001 From: Eric Rakestraw Date: Sun, 1 Feb 2026 21:06:09 -0600 Subject: [PATCH] Added DEBIAN_FRONTEND=noninteractive to the Dockerfile. --- Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1351f75..63d56b4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,8 +6,10 @@ 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 -RUN apt-get -q update && apt-get install -q --yes slapd-contrib ldap-utils +ENV DEBIAN_FRONTEND=noninteractive +RUN apt-get -q update +RUN apt-get install -q --yes slapd ldap-utils +RUN apt-get install -q --yes slapd-contrib # Remove the slapd.d directory, since we will be using slapd.conf. RUN rm -rf /etc/ldap/slapd.d