From e2675335136b45ed414f815fcea3781f48372f06 Mon Sep 17 00:00:00 2001 From: Christophe Monniez Date: Thu, 30 Jan 2020 14:52:29 +0100 Subject: [PATCH] [IMP] runbot: add pdfminer to Docker image As pdfminer is going to be used in Odoo attachement_indexation module and that there is no python3-pdfminer package in Ubuntu Bionic, it was decided to have an optional dependency. In order to run the attachement_indexation tests, the pip package is added to the runbot Docker image. --- runbot/data/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/runbot/data/Dockerfile b/runbot/data/Dockerfile index 7b92e7de..01566cd3 100644 --- a/runbot/data/Dockerfile +++ b/runbot/data/Dockerfile @@ -84,4 +84,5 @@ 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==4.5.4 websocket-client astroid==2.0.4 pylint==1.7.2 phonenumbers pyCrypto dbfread==2.0.7 firebase-admin==2.17.0 flamegraph + && pip3 install --no-cache-dir -r /root/p3-requirements.txt coverage==4.5.4 websocket-client astroid==2.0.4 \ + pylint==1.7.2 phonenumbers pyCrypto dbfread==2.0.7 firebase-admin==2.17.0 flamegraph pdfminer.six==20181108