Skip to content

Commit b3d6d01

Browse files
committed
[REF] Odoo 9.0-11.0: update to release 20180122
11.0: install python3 package xlwt to allow xlsx export Fixes #161
1 parent 16d5988 commit b3d6d01

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

10.0/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ RUN set -x; \
2323

2424
# Install Odoo
2525
ENV ODOO_VERSION 10.0
26-
ENV ODOO_RELEASE 20171030
26+
ENV ODOO_RELEASE 20180122
2727
RUN set -x; \
2828
curl -o odoo.deb -SL http://nightly.odoo.com/${ODOO_VERSION}/nightly/deb/odoo_${ODOO_VERSION}.${ODOO_RELEASE}_all.deb \
29-
&& echo 'b250b2bbcda6056146d323eb0d7a1e609a09d0ec odoo.deb' | sha1sum -c - \
29+
&& echo '836f0fb94aee0d3771cf2188309f6079ee35f83e odoo.deb' | sha1sum -c - \
3030
&& dpkg --force-depends -i odoo.deb \
3131
&& apt-get update \
3232
&& apt-get -y install -f --no-install-recommends \

11.0/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,17 +25,17 @@ RUN set -x; \
2525

2626
# Install Odoo
2727
ENV ODOO_VERSION 11.0
28-
ENV ODOO_RELEASE 20171030
28+
ENV ODOO_RELEASE 20180122
2929
RUN set -x; \
3030
curl -o odoo.deb -SL http://nightly.odoo.com/${ODOO_VERSION}/nightly/deb/odoo_${ODOO_VERSION}.${ODOO_RELEASE}_all.deb \
31-
&& echo '63d3fd997c850b657b93fb9351624d88d45d1682 odoo.deb' | sha1sum -c - \
31+
&& echo '56f61789bc655aaa2c014a3c5f63d80805408359 odoo.deb' | sha1sum -c - \
3232
&& dpkg --force-depends -i odoo.deb \
3333
&& apt-get update \
3434
&& apt-get -y install -f --no-install-recommends \
3535
&& rm -rf /var/lib/apt/lists/* odoo.deb
3636

3737
# Copy entrypoint script and Odoo configuration file
38-
RUN pip3 install num2words
38+
RUN pip3 install num2words xlwt
3939
COPY ./entrypoint.sh /
4040
COPY ./odoo.conf /etc/odoo/
4141
RUN chown odoo /etc/odoo/odoo.conf

9.0/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ RUN set -x; \
2323

2424
# Install Odoo
2525
ENV ODOO_VERSION 9.0
26-
ENV ODOO_RELEASE 20171030
26+
ENV ODOO_RELEASE 20180122
2727
RUN set -x; \
2828
curl -o odoo.deb -SL http://nightly.odoo.com/${ODOO_VERSION}/nightly/deb/odoo_${ODOO_VERSION}c.${ODOO_RELEASE}_all.deb \
29-
&& echo '5062e9422ca76f89eaf3edff49e496ca916fcca5 odoo.deb' | sha1sum -c - \
29+
&& echo 'a623d188d48f08ce8bb8898355eccc5e5e7e5b04 odoo.deb' | sha1sum -c - \
3030
&& dpkg --force-depends -i odoo.deb \
3131
&& apt-get update \
3232
&& apt-get -y install -f --no-install-recommends \

0 commit comments

Comments
 (0)