https://github.com/mapbox/tippecanoe
Raw File
Tip revision: e51899314dbf77a2a40a2607cb797ee4af532171 authored by Eric Fischer on 05 April 2019, 22:10:39 UTC
Don't run shell filters if the current zoom is below the minzoom
Tip revision: e518993
Dockerfile.centos7
FROM centos:7

RUN yum install -y make sqlite-devel zlib-devel bash git gcc-c++

# Create a directory and copy in all files
RUN mkdir -p /tmp/tippecanoe-src
WORKDIR /tmp/tippecanoe-src
COPY . /tmp/tippecanoe-src

# Build tippecanoe
RUN make \
  && make install

# Run the tests
CMD make test
back to top