Imported sources.
This commit is contained in:
19
Dockerfile
Normal file
19
Dockerfile
Normal file
@@ -0,0 +1,19 @@
|
||||
FROM ubuntu:26.04
|
||||
|
||||
RUN apt-get update && \
|
||||
echo "slapd slapd/no_configuration boolean true" | debconf-set-selections && \
|
||||
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
|
||||
slapd \
|
||||
ldap-utils \
|
||||
python3-jinja2 \
|
||||
python3-ldap3 && \
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
|
||||
COPY entrypoint.sh /entrypoint
|
||||
COPY bootstrap/ /bootstrap/
|
||||
|
||||
RUN chmod +x /entrypoint
|
||||
|
||||
EXPOSE 389 636
|
||||
|
||||
ENTRYPOINT ["/entrypoint"]
|
||||
Reference in New Issue
Block a user