https://github.com/mapbox/tippecanoe
Raw File
Tip revision: ca91cec9231912f72984a8ee1cd4a5cade6ad97e authored by Eric Fischer on 02 March 2018, 19:15:07 UTC
Merge pull request #537 from mapbox/adjust-cluster
Tip revision: ca91cec
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