11.0-jre -> 11.0-p9-jre

This commit is contained in:
suparit.k 2018-05-25 15:51:26 +07:00
parent aed805063d
commit bd202043ec
2 changed files with 12 additions and 9 deletions

View File

@ -1,9 +0,0 @@
FROM wongnai/odoo:11.0-20180516
USER root
RUN apt-get update && \
apt-get -y install openjdk-8-jre && \
rm -rf /var/lib/apt/lists/*
USER odoo

12
11.0-p9-jre/Dockerfile Normal file
View File

@ -0,0 +1,12 @@
FROM wongnai/odoo:11.0-20180516
USER root
# Need postgres in backport so that we can export database from odoo web
RUN echo 'deb http://ftp.debian.org/debian jessie-backports main' >> /etc/apt/sources.list \
&& apt-get update \
&& apt-get -t jessie-backports -y install postgresql-client \
&& apt-get -y install openjdk-8-jre gettext-base pdftk && \
&& rm -rf /var/lib/apt/lists/*
USER odoo