From: zhangab Date: Wed, 10 Apr 2019 21:47:05 +0000 (+0800) Subject: Modify dockerfile to add postgreSQL PGP key X-Git-Tag: 2.0.0~18^2~1 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=152ed52e54ebd31d936a678405daf819281511c9;p=usecase-ui%2Fserver.git Modify dockerfile to add postgreSQL PGP key Change-Id: I4a690cbebab0baa630142c0d24e73c167b60a676 Issue-ID: USECASEUI-236 Signed-off-by: zhangab --- diff --git a/standalone/src/main/assembly/Dockerfile b/standalone/src/main/assembly/Dockerfile index fe73b475..eb17387b 100644 --- a/standalone/src/main/assembly/Dockerfile +++ b/standalone/src/main/assembly/Dockerfile @@ -12,9 +12,10 @@ ENV PG_HOME=/etc/postgresql \ PG_USR_LIB=/usr/lib/postgresql \ PG_LOGDIR=/var/log/postgresql -# Install PostgreSQL 9.5 -RUN wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add - && \ - echo 'deb http://apt.postgresql.org/pub/repos/apt/ trusty-pgdg main' > /etc/apt/sources.list.d/pgdg.list +# Add the PostgreSQL PGP key to verify their Debian packages +RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys B97B0AFCAA1A47F044F244A07FCC7D46ACCC4CF8 +# Add PostgreSQL's repository +RUN echo "deb http://apt.postgresql.org/pub/repos/apt/ precise-pgdg main" > /etc/apt/sources.list.d/pgdg.list # Update the Ubuntu and install tools RUN apt-get update && \