Add postgresql 10 client to DockerFile
This commit is contained in:
parent
d036067821
commit
520ab50bb0
@ -10,6 +10,7 @@ RUN set -x; \
|
|||||||
&& apt-get install -y --no-install-recommends \
|
&& apt-get install -y --no-install-recommends \
|
||||||
ca-certificates \
|
ca-certificates \
|
||||||
curl \
|
curl \
|
||||||
|
gnupg \
|
||||||
libssl1.0-dev \
|
libssl1.0-dev \
|
||||||
node-less \
|
node-less \
|
||||||
python3-pip \
|
python3-pip \
|
||||||
@ -26,6 +27,13 @@ RUN set -x; \
|
|||||||
&& apt-get -y install -f --no-install-recommends \
|
&& apt-get -y install -f --no-install-recommends \
|
||||||
&& rm -rf /var/lib/apt/lists/* wkhtmltox.deb
|
&& rm -rf /var/lib/apt/lists/* wkhtmltox.deb
|
||||||
|
|
||||||
|
# Install Postgresql cli V10
|
||||||
|
RUN set -x; \
|
||||||
|
echo "deb [arch=amd64] http://apt.postgresql.org/pub/repos/apt/ stretch-pgdg main" > /etc/apt/sources.list.d/pgdg.list \
|
||||||
|
&& curl -sSL https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add - \
|
||||||
|
&& apt-get update \
|
||||||
|
&& apt-get install -y postgresql-client-10
|
||||||
|
|
||||||
# Install Odoo
|
# Install Odoo
|
||||||
ENV ODOO_VERSION 12.0
|
ENV ODOO_VERSION 12.0
|
||||||
ENV ODOO_RELEASE 20181126
|
ENV ODOO_RELEASE 20181126
|
||||||
|
Loading…
Reference in New Issue
Block a user