28 lines
731 B
Text
28 lines
731 B
Text
|
FROM debian:stretch
|
||
|
EXPOSE 389
|
||
|
|
||
|
ENV DEBIAN_FRONTEND noninteractive \
|
||
|
CONFDIR /etc/ldap/slapd.d \
|
||
|
DATADIR /var/lib/ldap
|
||
|
|
||
|
# add our users and groups first to ensure their IDs get assigned consitently
|
||
|
RUN groupadd -r -g 500 openldap && useradd -r -u 500 -g openldap openldap
|
||
|
|
||
|
|
||
|
RUN \
|
||
|
apt-get update && \
|
||
|
apt-get install --yes --no-install-recommends \
|
||
|
slapd \
|
||
|
ldap-utils \
|
||
|
ca-certificates && \
|
||
|
# remove the default config, since the entrypoint
|
||
|
# will populate it by hand.
|
||
|
rm -rf /etc/ldap/slapd.d && \
|
||
|
apt-get clean && \
|
||
|
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
||
|
|
||
|
COPY entrypoint.sh /entrypoint.sh
|
||
|
COPY fixtures/ /usr/share/slapd/fixtures/
|
||
|
|
||
|
ENTRYPOINT ["/entrypoint.sh"]
|