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 alpine:3.22 AS builder
FROM alpine:3.23 AS builder

# TODO: Add croaring-dev once available in Alpine Linux.
# https://gitlab.alpinelinux.org/alpine/aports/-/merge_requests/87769
Expand Down Expand Up @@ -29,7 +29,7 @@ RUN cmake -DCMAKE_BUILD_TYPE=Release .
RUN make -j16 && ./osmxTest && make install


FROM alpine:3.22
FROM alpine:3.23

# cxxopts, libosmium, nlohmann-json and protozero are header-only
# C++ libraries; catch2 is only used for testing. We do not need
Expand Down
Loading