From 4b717768695f6963aedc98c37033031536ef27be Mon Sep 17 00:00:00 2001 From: Steven Maude Date: Mon, 5 Feb 2024 14:54:00 +0000 Subject: [PATCH 1/2] Update to Alpine Linux 3.19 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index b2352d9..1b9a67b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,10 @@ # syntax = docker/dockerfile:experimental -FROM alpine:3.18 AS cachebase +FROM alpine:3.19 AS cachebase RUN mkdir -p /tmp/ccache \ && chown nobody:nogroup /tmp/ccache -FROM alpine:3.18 +FROM alpine:3.19 ARG BUILD_CONCURRENCY=4 From fcaef1c17d8c10af62e83397e2f6b326ba10056c Mon Sep 17 00:00:00 2001 From: Steven Maude Date: Mon, 5 Feb 2024 14:54:09 +0000 Subject: [PATCH 2/2] Add util-linux-static package This is needed because the `libuuid.a` static library moved from `util-linux-dev` to `util-linux-static` in Alpine 3.19. --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 1b9a67b..5900936 100644 --- a/Dockerfile +++ b/Dockerfile @@ -33,6 +33,7 @@ RUN --mount=type=cache,target=/etc/apk/cache,id=apk-cache \ linux-headers \ python3 \ util-linux-dev \ + util-linux-static \ zlib-dev \ zlib-static