From 2772aa7300810bd4db0f94a074dc446f11f067f8 Mon Sep 17 00:00:00 2001 From: Eugene Bright Date: Tue, 21 Aug 2018 23:25:57 +0300 Subject: [PATCH] [IMP] Odoo 11.0: add python3-pyldap dependency pyldap is needed for `Authentication via LDAP` plugin. Installing with apt results in slimmer image (comparing to pip approach). Fixes: odoo/docker#140 --- 11.0/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/11.0/Dockerfile b/11.0/Dockerfile index 7f548b9..d1e0569 100644 --- a/11.0/Dockerfile +++ b/11.0/Dockerfile @@ -17,6 +17,7 @@ RUN set -x; \ libssl1.0-dev \ xz-utils \ python3-watchdog \ + python3-pyldap \ && curl -o wkhtmltox.tar.xz -SL https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.4/wkhtmltox-0.12.4_linux-generic-amd64.tar.xz \ && echo '3f923f425d345940089e44c1466f6408b9619562 wkhtmltox.tar.xz' | sha1sum -c - \ && tar xvf wkhtmltox.tar.xz \