Newer
Older
ldapcherry / Dockerfile
@Kevin Li Kevin Li on 8 Jul 2019 526 bytes Removed debug flag from Dockerfile
FROM python:3-alpine

WORKDIR /usr/src/app
ADD . /usr/src/app

ENV DATAROOTDIR /usr/share
ENV SYSCONFDIR /etc
ENV AD_LOGIN administrator
ENV PASSWORD password

RUN apk add --no-cache libldap && \
    apk add --no-cache --virtual build-dependencies build-base yaml-dev openldap-dev && \
    python setup.py install && \
    apk del build-dependencies && \
    cp -v conf/* /etc/ldapcherry && \
    adduser -S ldapcherry && \
    rm -rf /usr/src/app

USER ldapcherry

CMD ["ldapcherryd", "-c", "/etc/ldapcherry/ldapcherry.ini"]