https://github.com/mapbox/tippecanoe
Raw File
Tip revision: af69c85d2399919db0872e73549d8294868754ea authored by Eric Fischer on 20 April 2018, 07:44:13 UTC
Merge pull request #561 from mapbox/exit-status
Tip revision: af69c85
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