Revision 38bca4a1791c7a66658d7f78193982cf8ac9a768 authored by Eric Fischer on 24 May 2018, 23:49:06 UTC, committed by GitHub on 24 May 2018, 23:49:06 UTC
Add the option to specify layer file, name, and description as JSON
2 parent s b65a5d1 + 48f7f1d
Raw File
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