Revision 370252731aec4718aa37d40d6ab285776a339d50 authored by Eric Fischer on 29 May 2019, 01:22:28 UTC, committed by Eric Fischer on 29 May 2019, 01:22:28 UTC
1 parent b550c7b
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