From feac9b24233137a7c874cfbc0790d19e51c6beff Mon Sep 17 00:00:00 2001 From: Daniel Blanco Date: Tue, 31 Oct 2017 08:34:37 +0100 Subject: [PATCH] [FIX] Odoo 11.0: Add num2words installation A Debian package does not exists yet for python3-num2words and this package is required for those who want to render textual amounts. Closes #129 --- 11.0/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/11.0/Dockerfile b/11.0/Dockerfile index 5899f3b..280c7a0 100644 --- a/11.0/Dockerfile +++ b/11.0/Dockerfile @@ -41,6 +41,7 @@ RUN set -x; \ && rm -rf /var/lib/apt/lists/* odoo.deb # Copy entrypoint script and Odoo configuration file +RUN pip3 install num2words COPY ./entrypoint.sh / COPY ./odoo.conf /etc/odoo/ RUN chown odoo /etc/odoo/odoo.conf