aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorzhangab <zhanganbing@chinamobile.com>2019-04-11 05:47:05 +0800
committerzhangab <zhanganbing@chinamobile.com>2019-04-11 05:47:09 +0800
commit152ed52e54ebd31d936a678405daf819281511c9 (patch)
treee9574c923ebb4612423770b1209bd3aa975e0065
parentfae145056e08d99487f4382432dac7ede8b8f529 (diff)
Modify dockerfile to add postgreSQL PGP key
Change-Id: I4a690cbebab0baa630142c0d24e73c167b60a676 Issue-ID: USECASEUI-236 Signed-off-by: zhangab <zhanganbing@chinamobile.com>
-rw-r--r--standalone/src/main/assembly/Dockerfile7
1 files changed, 4 insertions, 3 deletions
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 && \