https://github.com/mapbox/tippecanoe
Raw File
Tip revision: ca028dd1ccd6756050a0b226609e0a790b1b60b1 authored by Eric Fischer on 23 November 2017, 01:53:25 UTC
Merge pull request #495 from mapbox/bare-geom-crash
Tip revision: ca028dd
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