From 4a216c5f7f3735c34bae9810501a662559e666c8 Mon Sep 17 00:00:00 2001 From: Anastasia Lubennikova Date: Wed, 5 Oct 2022 11:06:13 +0300 Subject: [PATCH] Use PostGIS 3.3.1 that is compatible with pg 15 --- Dockerfile.compute-node-v15 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile.compute-node-v15 b/Dockerfile.compute-node-v15 index 7e33a0d7c8..bdb4330c4f 100644 --- a/Dockerfile.compute-node-v15 +++ b/Dockerfile.compute-node-v15 @@ -5,7 +5,7 @@ ARG TAG=pinned # apparently, ARGs don't get replaced in RUN commands in kaniko -# ARG POSTGIS_VERSION=3.3.0 +# ARG POSTGIS_VERSION=3.3.1 # ARG PLV8_VERSION=3.1.4 # ARG PG_VERSION=v15 @@ -47,9 +47,9 @@ COPY --from=pg-build /usr/local/pgsql/ /usr/local/pgsql/ RUN apt update && \ apt install -y gdal-bin libgdal-dev libprotobuf-c-dev protobuf-c-compiler xsltproc -RUN wget https://download.osgeo.org/postgis/source/postgis-3.3.0.tar.gz && \ - tar xvzf postgis-3.3.0.tar.gz && \ - cd postgis-3.3.0 && \ +RUN wget https://download.osgeo.org/postgis/source/postgis-3.3.1.tar.gz && \ + tar xvzf postgis-3.3.1.tar.gz && \ + cd postgis-3.3.1 && \ ./autogen.sh && \ export PATH="/usr/local/pgsql/bin:$PATH" && \ ./configure && \