From 16c1aab63386ded786d2e175360cdc20e0f6201c Mon Sep 17 00:00:00 2001 From: Blottiere Paul Date: Fri, 1 Sep 2023 08:34:15 +0200 Subject: [PATCH] Use PG14 docker image --- doc/development.rst | 2 +- docker/Dockerfile | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/development.rst b/doc/development.rst index fc740a9f..266c85dd 100644 --- a/doc/development.rst +++ b/doc/development.rst @@ -123,7 +123,7 @@ Docker Image A ``Dockerfile`` is provided in the ``docker`` directory and based on the official PostgreSQL docker image available DockerHub_. The image generated -is based on PostgreSQL 12, PostGIS 3 and the laz-perf support is activated. +is based on PostgreSQL 14, PostGIS 3 and the laz-perf support is activated. .. code-block:: bash diff --git a/docker/Dockerfile b/docker/Dockerfile index 522643c6..85e857a5 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,7 +1,7 @@ -FROM postgres:12 +FROM postgres:14 MAINTAINER Paul Blottiere -ENV POSTGRES_VERSION 12 +ENV POSTGRES_VERSION 14 ENV POSTGIS_VERSION 3 RUN apt-get update \ @@ -47,4 +47,4 @@ RUN apt-get update \ libxml2-dev RUN mkdir -p /docker-entrypoint-initdb.d -COPY ./initdb-pgpointcloud.sh /docker-entrypoint-initdb.d/10_pgpointcloud.sh \ No newline at end of file +COPY ./initdb-pgpointcloud.sh /docker-entrypoint-initdb.d/10_pgpointcloud.sh