From cc42323be54a5f3d110cfed72211ce229d82afb1 Mon Sep 17 00:00:00 2001 From: Hidde Beydals Date: Mon, 11 Dec 2023 09:06:32 +0100 Subject: [PATCH 1/2] build: update Alpine to 3.19 Signed-off-by: Hidde Beydals --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 18ffb23d..b6c5257f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -60,7 +60,7 @@ RUN export CGO_LDFLAGS="-static -fuse-ld=lld" && \ # Ensure that the binary was cross-compiled correctly to the target platform. RUN xx-verify --static /image-automation-controller -FROM alpine:3.18 +FROM alpine:3.19 ARG TARGETPLATFORM RUN apk --no-cache add ca-certificates \ From 90f5bdf7de35c2b3af3d5f4899352a5cd38de7f6 Mon Sep 17 00:00:00 2001 From: Hidde Beydals Date: Mon, 11 Dec 2023 09:09:04 +0100 Subject: [PATCH 2/2] build: update `tonistiigi/xx` to 1.3.0 Signed-off-by: Hidde Beydals --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b6c5257f..af1ffac6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ ARG BASE_VARIANT=alpine ARG GO_VERSION=1.20 -ARG XX_VERSION=1.2.1 +ARG XX_VERSION=1.3.0 FROM --platform=$BUILDPLATFORM tonistiigi/xx:${XX_VERSION} AS xx