diff --git a/9.5/Dockerfile b/9.5/Dockerfile index 095a9fa88d..63b52a5db6 100644 --- a/9.5/Dockerfile +++ b/9.5/Dockerfile @@ -1,5 +1,5 @@ # vim:set ft=dockerfile: -FROM debian:jessie +FROM schabrolles/ubuntu_ppc64le # explicitly set user/group IDs RUN groupadd -r postgres --gid=999 && useradd -r -g postgres --uid=999 postgres @@ -30,14 +30,14 @@ RUN apt-key adv --keyserver ha.pool.sks-keyservers.net --recv-keys B97B0AFCAA1A4 ENV PG_MAJOR 9.5 ENV PG_VERSION 9.5.3-1.pgdg80+1 -RUN echo 'deb http://apt.postgresql.org/pub/repos/apt/ jessie-pgdg main' $PG_MAJOR > /etc/apt/sources.list.d/pgdg.list +#RUN echo 'deb http://apt.postgresql.org/pub/repos/apt/ jessie-pgdg main' $PG_MAJOR > /etc/apt/sources.list.d/pgdg.list RUN apt-get update \ && apt-get install -y postgresql-common \ && sed -ri 's/#(create_main_cluster) .*$/\1 = false/' /etc/postgresql-common/createcluster.conf \ && apt-get install -y \ - postgresql-$PG_MAJOR=$PG_VERSION \ - postgresql-contrib-$PG_MAJOR=$PG_VERSION \ + postgresql \ + postgresql-contrib \ && rm -rf /var/lib/apt/lists/* # make the sample config easier to munge (and "correct by default")