From e1c5c4d3ff7df5e76e59c43bae83b01609ccf936 Mon Sep 17 00:00:00 2001 From: nemmeviu Date: Sat, 16 Dec 2017 16:45:51 -0300 Subject: [PATCH] commented ldap support on Dockerfile --- 10.0/Dockerfile | 7 +++++++ 11.0/Dockerfile | 7 +++++++ 9.0/Dockerfile | 7 +++++++ 3 files changed, 21 insertions(+) diff --git a/10.0/Dockerfile b/10.0/Dockerfile index 6857e6a..928f158 100644 --- a/10.0/Dockerfile +++ b/10.0/Dockerfile @@ -20,6 +20,13 @@ RUN set -x; \ && apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false -o APT::AutoRemove::SuggestsImportant=false npm \ && rm -rf /var/lib/apt/lists/* wkhtmltox.deb \ && pip install psycogreen==1.0 + +## Uncomment this lines to add ldap auth support +#RUN set -x; \ +# apt-get install -y --no-install-recommends \ +# python-dev gcc libldap2-dev libssl-dev ; \ +# pip install pyldap + # Install Odoo ENV ODOO_VERSION 10.0 diff --git a/11.0/Dockerfile b/11.0/Dockerfile index 4e9c814..cf0dded 100644 --- a/11.0/Dockerfile +++ b/11.0/Dockerfile @@ -23,6 +23,13 @@ RUN set -x; \ && cp wkhtmltox/bin/* /usr/local/bin/ \ && cp -r wkhtmltox/share/man/man1 /usr/local/share/man/ + +## Uncomment this lines to add ldap auth support +#RUN set -x; \ +# apt-get install -y --no-install-recommends \ +# python3-dev gcc libldap2-dev libssl-dev ; \ +# pip3 install pyldap + # Install Odoo ENV ODOO_VERSION 11.0 ENV ODOO_RELEASE 20171030 diff --git a/9.0/Dockerfile b/9.0/Dockerfile index dc0cfe4..74c1dc6 100644 --- a/9.0/Dockerfile +++ b/9.0/Dockerfile @@ -21,6 +21,13 @@ RUN set -x; \ && rm -rf /var/lib/apt/lists/* wkhtmltox.deb \ && pip install psycogreen==1.0 +## Uncomment this lines to add ldap auth support +#RUN set -x; \ +# apt-get install -y --no-install-recommends \ +# python-dev gcc libldap2-dev libssl-dev ; \ +# pip install pyldap + + # Install Odoo ENV ODOO_VERSION 9.0 ENV ODOO_RELEASE 20171030