Revision 945d80400b6c3bdbd73606a19351cb45c52e707d authored by Eric Fischer on 02 March 2019, 00:22:00 UTC, committed by GitHub on 02 March 2019, 00:22:00 UTC
Fix reading of MultiLineStrings in Geobuf input
2 parent s 907ddeb + 1bc475b
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