mirror of
https://github.com/kakwa/ldapcherry
synced 2025-07-01 19:18:10 +02:00
9 lines
290 B
Docker
9 lines
290 B
Docker
FROM ubuntu:16.04
|
|
|
|
ADD . .
|
|
RUN apt update && apt install -y python3 python3-pip && pip3 install -e . -r requirements.txt && pip3 install pycodestyle passlib coveralls && /usr/bin/python3 setup.py
|
|
VOLUME /etc/ldapcherry
|
|
EXPOSE 80
|
|
|
|
CMD ["ldapcherryd", "-c", "/etc/ldapcherry/ldapcherry.ini"]
|