comparison docker/Dockerfile.pg @ 5297:71f73df1356d

Update PostGIS branch name
author Tom Gottfried <tom@intevation.de>
date Wed, 19 Aug 2020 17:42:09 +0200
parents 8d6f43894f09
children
comparison
equal deleted inserted replaced
5296:b3b990811f2c 5297:71f73df1356d
27 27
28 # Add PostGIS repository and build it 28 # Add PostGIS repository and build it
29 WORKDIR /opt/ 29 WORKDIR /opt/
30 RUN git clone https://git.osgeo.org/gitea/postgis/postgis.git 30 RUN git clone https://git.osgeo.org/gitea/postgis/postgis.git
31 WORKDIR /opt/postgis 31 WORKDIR /opt/postgis
32 RUN git checkout svn-2.5 32 RUN git checkout stable-2.5
33 RUN ./autogen.sh && ./configure --with-pgconfig=$PGBIN/pg_config && \ 33 RUN ./autogen.sh && ./configure --with-pgconfig=$PGBIN/pg_config && \
34 make comments && make && make install 34 make comments && make && make install
35 35
36 # Build btree_gist extension 36 # Build btree_gist extension
37 WORKDIR /opt/postgresql/contrib/btree_gist 37 WORKDIR /opt/postgresql/contrib/btree_gist