https://github.com/mapbox/tippecanoe
Raw File
Tip revision: b2277d76e58c14d7a672c6a8eef824d97c5a77fa authored by Eric Fischer on 17 February 2020, 22:56:11 UTC
Eliminate the separate metadata file
Tip revision: b2277d7
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