add openldap service

This commit is contained in:
sfigato 2024-11-27 22:56:19 +01:00
parent b767272cf1
commit fd739ba9e6
Signed by: blallo
GPG Key ID: C530464EEDCF489A

13
openldap/Dockerfile Normal file
View File

@ -0,0 +1,13 @@
FROM debian:stable
ENV DEBIAN_FRONTEND=noninteractive
RUN apt update \
&& apt install -y slapd \
&& rm -rf /var/lib/apt/lists/*
EXPOSE 389
EXPOSE 636
ENTRYPOINT ["/usr/sbin/slapd"]
CMD []