https://github.com/mapbox/tippecanoe
Raw File
Tip revision: 506526ddfaceb602ee5a431cd69bbe231e430221 authored by Eric Fischer on 26 November 2018, 18:57:30 UTC
Merge pull request #657 from mapbox/drop-features-earlier
Tip revision: 506526d
Dockerfile
# Start from ubuntu
FROM ubuntu:16.04

# Update repos and install dependencies
RUN apt-get update \
  && apt-get -y upgrade \
  && apt-get -y install build-essential libsqlite3-dev zlib1g-dev

# 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