Updated Dockerfile to pre-create /var/run/slapd before installing the package.
Some checks failed
ci/woodpecker/push/build-image Pipeline failed

This commit is contained in:
2026-02-01 21:08:53 -06:00
parent 9209f014af
commit 49bb697e1d

View File

@@ -5,6 +5,9 @@ LABEL description="OpenLDAP" \
maintainer="Eric Rakestraw <eric@maximumdirect.net>" \ maintainer="Eric Rakestraw <eric@maximumdirect.net>" \
version="Ubuntu 24.04" version="Ubuntu 24.04"
# Create the necesary directories for slapd
RUN mkdir -pf /var/run/slapd
# Install the necessary packages for LDAP Proxy server # Install the necessary packages for LDAP Proxy server
ENV DEBIAN_FRONTEND=noninteractive ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get -q update RUN apt-get -q update