This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM base/archlinux | |
RUN echo "installing openldap" \ | |
&& sed 's/^CheckSpace/# CheckSpace/g' -i /etc/pacman.conf \ | |
&& pacman -Syyu --noconfirm \ | |
&& sed 's/^# CheckSpace/CheckSpace/g' -i /etc/pacman.conf \ | |
&& pacman -S --noconfirm openldap | |
RUN echo "configuring openldap" \ | |
&& sed -i 's/^suffix.*/suffix\t"dc=example,dc=org"/' /etc/openldap/slapd.conf \ |