Revision 065cc1d78d662ec21620596e07749c02a941337f authored by Eric Fischer on 31 October 2019, 21:42:26 UTC, committed by GitHub on 31 October 2019, 21:42:26 UTC
Guard against null data in the mbtiles file when decoding
2 parent s ec00ac2 + 25bf395
Raw File
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