This commit is contained in:
Andrea Giardini 2017-10-25 09:18:08 +00:00 committed by GitHub
commit eb8879a92b
2 changed files with 27 additions and 10 deletions

17
Dockerfile Normal file
View File

@ -0,0 +1,17 @@
FROM python:2-alpine
COPY nginx-ldap-auth-daemon.py /usr/src/app/
WORKDIR /usr/src/app/
# Install required software
RUN \
apk --no-cache add openldap-dev && \
apk --no-cache add --virtual build-dependencies build-base && \
pip install python-ldap && \
apk del build-dependencies
EXPOSE 8888
CMD ["python", "/usr/src/app/nginx-ldap-auth-daemon.py"]