2 Commits
v0.2 ... main

Author SHA1 Message Date
800010b1ff Create a symlink to /run at /var/run because Ubuntu.
All checks were successful
ci/woodpecker/push/build-image Pipeline was successful
2026-02-01 21:40:29 -06:00
6e762a268b Updated Dockerfile to create /run/slapd instead of /var/run/slapd because Ubuntu.
Some checks failed
ci/woodpecker/push/build-image Pipeline failed
2026-02-01 21:33:58 -06:00

View File

@@ -6,7 +6,8 @@ LABEL description="OpenLDAP" \
version="Ubuntu 24.04" version="Ubuntu 24.04"
# Create the necesary directories for slapd # Create the necesary directories for slapd
RUN mkdir -p /var/run/slapd RUN mkdir -p /run/slapd
RUN ln -sf /run /var/run
# Install the necessary packages for LDAP Proxy server # Install the necessary packages for LDAP Proxy server
ENV DEBIAN_FRONTEND=noninteractive ENV DEBIAN_FRONTEND=noninteractive