From 4791c3a82e25a593af1c40b35c78a8500a488329 Mon Sep 17 00:00:00 2001 From: Christophe Monniez Date: Tue, 12 Feb 2019 15:54:29 +0100 Subject: [PATCH] [IMP] runbot: add pyCrypto to Dockerfile A new module in Odoo needs pyCrypto but this module alone is too limited to justify an addition in the requirement file. PR: https://github.com/odoo/odoo/pull/28816 --- runbot/data/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runbot/data/Dockerfile b/runbot/data/Dockerfile index be6fe3cc..ff0108e0 100644 --- a/runbot/data/Dockerfile +++ b/runbot/data/Dockerfile @@ -68,4 +68,4 @@ RUN pip install -U setuptools wheel \ ADD https://raw.githubusercontent.com/odoo/odoo/master/requirements.txt /root/p3-requirements.txt ADD https://raw.githubusercontent.com/odoo/odoo/10.0/requirements.txt /root/p2-requirements.txt RUN pip install --no-cache-dir -r /root/p2-requirements.txt coverage flanker==0.4.38 pylint==1.7.2 phonenumbers redis \ - && pip3 install --no-cache-dir -r /root/p3-requirements.txt coverage websocket-client astroid==2.0.4 pylint==1.7.2 phonenumbers + && pip3 install --no-cache-dir -r /root/p3-requirements.txt coverage websocket-client astroid==2.0.4 pylint==1.7.2 phonenumbers pyCrypto