https://github.com/mapbox/tippecanoe
Raw File
Tip revision: 58ab638f20b13a00b05b579e8f8f4783ebdbf9a1 authored by Eric Fischer on 18 June 2018, 16:41:26 UTC
Debugging code to find where I am leaving empty linetos
Tip revision: 58ab638
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