Last active
October 15, 2017 08:24
postgis-asmvt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM debian:stretch | |
RUN apt-get update -qq && apt-get install -y \ | |
postgresql-9.6 postgresql-server-dev-9.6 \ | |
build-essential autoconf libtool \ | |
libproj-dev libgdal-dev libgeos-dev \ | |
libprotobuf-c-dev curl | |
RUN service postgresql start && su -l postgres -c "createuser -s `whoami`" | |
RUN curl --silent -L \ | |
https://github.com/bjornharrtell/postgis/archive/asmvt.tar.gz | \ | |
tar xz && cd postgis-asmvt && \ | |
./autogen.sh && \ | |
./configure --without-address-standardizer --without-raster --without-topology && make && make install && \ | |
cd .. && rm postgis-asmvt -rf |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Now merged to svn-trunk so should be fine to replace bjornharrtell with postgis and asmvt with svn-trunk.