Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump GEOS 3.9.1 #345

Merged
merged 5 commits into from
Apr 23, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions docker/postgis/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ FROM postgis/postgis:$BASE_POSTGIS_VER

LABEL maintainer="Yuri Astrakhan <[email protected]>"

# https://github.com/libgeos/geos/releases
ARG GEOS_VER=3.9.1

# https://github.com/pramsey/pgsql-gzip/releases
ARG PGSQL_GZIP_TAG=v1.0.0
ARG PGSQL_GZIP_REPO=https://github.com/pramsey/pgsql-gzip.git
Expand Down Expand Up @@ -36,6 +39,16 @@ RUN set -eux ;\
libkakasi2-dev \
libgdal-dev \
;\
## Install specific GEOS version
cd /opt/ ;\
curl -o /opt/geos.tar.bz2 http://download.osgeo.org/geos/geos-${GEOS_VER}.tar.bz2 ;\
mkdir /opt/geos ;\
tar xf /opt/geos.tar.bz2 -C /opt/geos --strip-components=1 ;\
cd /opt/geos/ ;\
./configure ;\
make -j ;\
make install ;\
rm -rf /opt/geos* ;\
##
## gzip extension
cd /opt/ ;\
Expand Down