https://github.com/mapbox/tippecanoe
Raw File
Tip revision: d64ac19f115bef509f34cfc685ff27644e033e3c authored by Eric Fischer on 19 June 2018, 22:10:28 UTC
Merge pull request #591 from mapbox/attribute-filter
Tip revision: d64ac19
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