https://github.com/mapbox/tippecanoe
Raw File
Tip revision: 03199a77a59c373838f9dc18c534410985c8e1d9 authored by Eric Fischer on 07 September 2018, 19:07:47 UTC
Merge pull request #642 from mapbox/maxzoom-minzoom
Tip revision: 03199a7
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