Skip to content

Instantly share code, notes, and snippets.

@bjornharrtell
Last active October 15, 2017 08:24
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bjornharrtell/502353b063249880e15b1f66e2db91c6 to your computer and use it in GitHub Desktop.
Save bjornharrtell/502353b063249880e15b1f66e2db91c6 to your computer and use it in GitHub Desktop.
postgis-asmvt
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
@bjornharrtell
Copy link
Author

Now merged to svn-trunk so should be fine to replace bjornharrtell with postgis and asmvt with svn-trunk.

@bjornharrtell
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment