tippecanoe/Dockerfile
2017-11-01 13:42:42 -07:00

20 lines
428 B
Docker

# Start from ubuntu
FROM ubuntu:17.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 default command to show usage
CMD make test