From 4582a7b4f9d74d443aded2af2b3a39cfdf655f0e Mon Sep 17 00:00:00 2001 From: Nico Vermaas <vermaas@astron.nl> Date: Tue, 22 Dec 2020 13:20:09 +0100 Subject: [PATCH] for Postgres, switch to ubuntu 18.04 and postgres 9.4 --- atdb/docker/postgres/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/atdb/docker/postgres/Dockerfile b/atdb/docker/postgres/Dockerfile index 3ea367dc..afcdaad5 100644 --- a/atdb/docker/postgres/Dockerfile +++ b/atdb/docker/postgres/Dockerfile @@ -15,7 +15,7 @@ RUN echo "deb http://apt.postgresql.org/pub/repos/apt/ precise-pgdg main" > /etc # Install ``python-software-properties``, ``software-properties-common`` and PostgreSQL 9.3 # There are some warnings (in red) that show up during the build. You can hide # them by prefixing each apt-get statement with DEBIAN_FRONTEND=noninteractive -RUN apt-get update && apt-get install -y python-software-properties software-properties-common postgresql-9.3 postgresql-client-9.3 postgresql-contrib-9.3 +RUN apt-get update && apt-get install -y python-software-properties software-properties-common postgresql-9.3 postgresql-client-9.3 postgresql-contrib-9.3 gnupg # Note: The official Debian and Ubuntu images automatically ``apt-get clean`` # after each ``apt-get`` -- GitLab