[postgis] Update PostGIS dependencies (#2173)

PostGIS depends on GEOS, and recently requres GEOS 3.6 which cannot be found in ubuntu 16.04. 

With this change build will pull newest GEOS 3.7 from Ubuntu 19.04.
This commit is contained in:
Darafei Praliaskouski 2019-02-16 22:55:04 +03:00 committed by Max Moroz
parent c205defe5f
commit 636b1dfb36
1 changed files with 2 additions and 1 deletions

View File

@ -16,7 +16,8 @@
FROM gcr.io/oss-fuzz-base/base-builder
MAINTAINER lr@pcorp.us
RUN apt-get update && apt-get install -y make autoconf automake libtool g++ postgresql-server-dev-9.5 libgeos-dev libproj-dev libxml2-dev pkg-config libjson-c-dev
RUN echo deb http://archive.ubuntu.com/ubuntu/ disco main restricted universe multiverse >> /etc/apt/sources.list
RUN apt-get update && apt-get install -y make autoconf automake libtool g++ postgresql-server-dev-11 libgeos-dev libproj-dev libxml2-dev pkg-config libjson-c-dev
RUN git clone --depth 1 https://git.osgeo.org/gogs/postgis/postgis.git postgis
WORKDIR postgis
COPY build.sh $SRC/