https://github.com/mapbox/tippecanoe
Raw File
Tip revision: b550c7b4a6343f5310fae82c8794648bf77afa3a authored by Eric Fischer on 16 May 2019, 17:38:56 UTC
Merge pull request #760 from mapbox/preserve-shared-nodes
Tip revision: b550c7b
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