Revision 6376c283bac9d7fc1c5b8cbd25acf12843052ae4 authored by Eric Fischer on 12 December 2018, 18:49:53 UTC, committed by Eric Fischer on 12 December 2018, 18:51:00 UTC
1 parent 5f1c0e1
Raw File
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