https://github.com/mapbox/tippecanoe
Raw File
Tip revision: 6db02e8457937e5ef895fe29ea23d0d94e835273 authored by Eric Fischer on 14 May 2018, 22:08:51 UTC
Merge pull request #568 from mapbox/gzip-input
Tip revision: 6db02e8
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