From 5bd46e7ed54f800b37e6e420d001ba2f2e49e496 Mon Sep 17 00:00:00 2001 From: Jt Miclat Date: Fri, 5 May 2023 02:54:27 +0800 Subject: [PATCH] Update dockerfile (#79) Update docker image to use newer version of ubuntu and reduce image size --- Dockerfile | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1df89e5f1..81c9927dd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,19 +1,20 @@ -# Start from ubuntu -FROM ubuntu:16.04 +FROM ubuntu:22.04 AS tippacanoe-builder -# 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 +WORKDIR /tmp/tippecanoe-src -# Build tippecanoe -RUN make \ - && make install +RUN make -# Run the tests CMD make test + +# Using multistage build reduces the docker image size by alot by only copying the needed binaries +FROM ubuntu:22.04 +RUN apt-get update \ + && apt-get -y install libsqlite3-dev zlib1g-dev \ + && rm -rf /var/lib/apt/lists/* +COPY --from=tippacanoe-builder /tmp/tippecanoe-src/tippecanoe* /usr/local/bin/ +COPY --from=tippacanoe-builder /tmp/tippecanoe-src/tile-join /usr/local/bin/ +WORKDIR /app