Skip to content

Commit

Permalink
feat: add openldap
Browse files Browse the repository at this point in the history
  • Loading branch information
id committed Sep 26, 2024
1 parent 4117d27 commit d0fae06
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
14 changes: 14 additions & 0 deletions openldap/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
FROM buildpack-deps:bookworm

ARG LDAP_TAG=2.5.16

RUN apt-get update && apt-get install -y groff groff-base ldap-utils
RUN wget https://www.openldap.org/software/download/OpenLDAP/openldap-release/openldap-${LDAP_TAG}.tgz \
&& tar xvzf openldap-${LDAP_TAG}.tgz \
&& cd openldap-${LDAP_TAG} \
&& ./configure --enable-memberof --enable-refint && make depend && make && make install \
&& cd .. && rm -rf openldap-${LDAP_TAG}

WORKDIR /usr/local/etc/openldap

EXPOSE 389 636
1 change: 1 addition & 0 deletions openldap/vsn
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
1.0.0

0 comments on commit d0fae06

Please sign in to comment.