From b3d6d018f740ad2a816b5209300b875e2760085e Mon Sep 17 00:00:00 2001 From: Christophe Monniez Date: Mon, 22 Jan 2018 11:39:40 +0100 Subject: [PATCH] [REF] Odoo 9.0-11.0: update to release 20180122 11.0: install python3 package xlwt to allow xlsx export Fixes #161 --- 10.0/Dockerfile | 4 ++-- 11.0/Dockerfile | 6 +++--- 9.0/Dockerfile | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/10.0/Dockerfile b/10.0/Dockerfile index 6857e6a..a3e32e1 100644 --- a/10.0/Dockerfile +++ b/10.0/Dockerfile @@ -23,10 +23,10 @@ RUN set -x; \ # Install Odoo ENV ODOO_VERSION 10.0 -ENV ODOO_RELEASE 20171030 +ENV ODOO_RELEASE 20180122 RUN set -x; \ curl -o odoo.deb -SL http://nightly.odoo.com/${ODOO_VERSION}/nightly/deb/odoo_${ODOO_VERSION}.${ODOO_RELEASE}_all.deb \ - && echo 'b250b2bbcda6056146d323eb0d7a1e609a09d0ec odoo.deb' | sha1sum -c - \ + && echo '836f0fb94aee0d3771cf2188309f6079ee35f83e odoo.deb' | sha1sum -c - \ && dpkg --force-depends -i odoo.deb \ && apt-get update \ && apt-get -y install -f --no-install-recommends \ diff --git a/11.0/Dockerfile b/11.0/Dockerfile index 4e9c814..eac528a 100644 --- a/11.0/Dockerfile +++ b/11.0/Dockerfile @@ -25,17 +25,17 @@ RUN set -x; \ # Install Odoo ENV ODOO_VERSION 11.0 -ENV ODOO_RELEASE 20171030 +ENV ODOO_RELEASE 20180122 RUN set -x; \ curl -o odoo.deb -SL http://nightly.odoo.com/${ODOO_VERSION}/nightly/deb/odoo_${ODOO_VERSION}.${ODOO_RELEASE}_all.deb \ - && echo '63d3fd997c850b657b93fb9351624d88d45d1682 odoo.deb' | sha1sum -c - \ + && echo '56f61789bc655aaa2c014a3c5f63d80805408359 odoo.deb' | sha1sum -c - \ && dpkg --force-depends -i odoo.deb \ && apt-get update \ && apt-get -y install -f --no-install-recommends \ && rm -rf /var/lib/apt/lists/* odoo.deb # Copy entrypoint script and Odoo configuration file -RUN pip3 install num2words +RUN pip3 install num2words xlwt COPY ./entrypoint.sh / COPY ./odoo.conf /etc/odoo/ RUN chown odoo /etc/odoo/odoo.conf diff --git a/9.0/Dockerfile b/9.0/Dockerfile index dc0cfe4..52c3cf9 100644 --- a/9.0/Dockerfile +++ b/9.0/Dockerfile @@ -23,10 +23,10 @@ RUN set -x; \ # Install Odoo ENV ODOO_VERSION 9.0 -ENV ODOO_RELEASE 20171030 +ENV ODOO_RELEASE 20180122 RUN set -x; \ curl -o odoo.deb -SL http://nightly.odoo.com/${ODOO_VERSION}/nightly/deb/odoo_${ODOO_VERSION}c.${ODOO_RELEASE}_all.deb \ - && echo '5062e9422ca76f89eaf3edff49e496ca916fcca5 odoo.deb' | sha1sum -c - \ + && echo 'a623d188d48f08ce8bb8898355eccc5e5e7e5b04 odoo.deb' | sha1sum -c - \ && dpkg --force-depends -i odoo.deb \ && apt-get update \ && apt-get -y install -f --no-install-recommends \