https://github.com/mapbox/tippecanoe
Raw File
Tip revision: 18c1c1b507283c1aa5c4f9a5242528bc299c58a3 authored by Eric Fischer on 07 November 2018, 23:16:44 UTC
Merge branch 'master' into blake-properties
Tip revision: 18c1c1b
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