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
# Pull base image from authorized source | |
FROM centos:7 | |
# Install the necessary packages for LDAP Proxy server | |
RUN yum install openldap openldap-clients openldap-servers -y | |
# Copy openldap configuration | |
COPY ./slapd.conf /etc/openldap/slapd.conf | |
# Copy certs (root and intermediate) |