https://github.com/mapbox/tippecanoe
Raw File
Tip revision: 3bb5a9c3810574cd2790aaa018ed41e98f85f157 authored by Eric Fischer on 28 August 2019, 22:22:25 UTC
Add a test for tar output format
Tip revision: 3bb5a9c
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