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 \
|
||||
ca-certificates \
|
||||
curl \
|
||||
gnupg \
|
||||
libssl1.0-dev \
|
||||
node-less \
|
||||
python3-pip \
|
||||
@ -26,6 +27,13 @@ RUN set -x; \
|
||||
&& apt-get -y install -f --no-install-recommends \
|
||||
&& 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
|
||||
ENV ODOO_VERSION 12.0
|
||||
ENV ODOO_RELEASE 20181126
|
||||
|
Loading…
Reference in New Issue
Block a user