Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:22.04 AS tippecanoe-builder
FROM ubuntu:24.04 AS tippecanoe-builder

RUN apt-get update \
&& apt-get -y install make gcc g++ libsqlite3-dev zlib1g-dev
Expand All @@ -11,7 +11,7 @@ RUN make
CMD make test

# Using multistage build reduces the docker image size by alot by only copying the needed binaries
FROM ubuntu:22.04
FROM ubuntu:24.04
RUN apt-get update \
&& apt-get -y install libsqlite3-0 \
&& rm -rf /var/lib/apt/lists/*
Expand Down