[FIX] Odoo 10.0-12.0: add missing packages
In Odoo, ldap, qrcode and vobject python modules are set as required in odoo/setup.py. On the other hand, they are only recommendend in the Debian package. As a consequence, it was difficult to run some Odoo modules that required one of them. The Odoo Debian package was adapted in master where they were added as dependencies in odoo/odoo@2ff49c5fcb . With this commit, they are installed in the Docker images. This is a part of the fix of odoo/odoo#27752.
This commit is contained in:
+6
-3
@@ -10,13 +10,16 @@ RUN set -x; \
|
||||
&& apt-get install -y --no-install-recommends \
|
||||
ca-certificates \
|
||||
curl \
|
||||
libssl1.0-dev \
|
||||
node-less \
|
||||
python3-pip \
|
||||
python3-setuptools \
|
||||
python3-pyldap \
|
||||
python3-qrcode \
|
||||
python3-renderpm \
|
||||
libssl1.0-dev \
|
||||
xz-utils \
|
||||
python3-setuptools \
|
||||
python3-vobject \
|
||||
python3-watchdog \
|
||||
xz-utils \
|
||||
&& 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 \
|
||||
|
||||
Reference in New Issue
Block a user