https://github.com/mapbox/tippecanoe
Raw File
Tip revision: 6ad1497853bac9244433bc214634ee1266aa41fd authored by Eric Fischer on 16 February 2018, 22:40:48 UTC
Stop expecting tiles to come out byte-for-byte identical
Tip revision: 6ad1497
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