From 6d92142da193f60c161f97eea1079f437dd51d7e Mon Sep 17 00:00:00 2001 From: Christophe Monniez Date: Thu, 23 Jan 2020 14:32:55 +0100 Subject: [PATCH] [IMP] Odoo 11.0-13.0: install python-slugify The Odoo's fallback for the slugify_one method does only support latin letters. This commit installs the python-slugify library from the Debian packages. Closes #199 Thanks to @lem8r for the report and PR. --- 11.0/Dockerfile | 1 + 12.0/Dockerfile | 1 + 13.0/Dockerfile | 1 + 3 files changed, 3 insertions(+) diff --git a/11.0/Dockerfile b/11.0/Dockerfile index 44d389c..6131128 100644 --- a/11.0/Dockerfile +++ b/11.0/Dockerfile @@ -25,6 +25,7 @@ RUN set -x; \ python3-qrcode \ python3-renderpm \ python3-setuptools \ + python3-slugify \ python3-vobject \ python3-watchdog \ python3-xlrd \ diff --git a/12.0/Dockerfile b/12.0/Dockerfile index acf092a..d180d6a 100644 --- a/12.0/Dockerfile +++ b/12.0/Dockerfile @@ -25,6 +25,7 @@ RUN set -x; \ python3-qrcode \ python3-renderpm \ python3-setuptools \ + python3-slugify \ python3-vobject \ python3-watchdog \ python3-xlrd \ diff --git a/13.0/Dockerfile b/13.0/Dockerfile index ec42aa6..8627f22 100644 --- a/13.0/Dockerfile +++ b/13.0/Dockerfile @@ -23,6 +23,7 @@ RUN set -x; \ python3-qrcode \ python3-renderpm \ python3-setuptools \ + python3-slugify \ python3-vobject \ python3-watchdog \ python3-xlrd \