From e8ad8de86859bf96c0d299f3b0999d6621f1ff55 Mon Sep 17 00:00:00 2001 From: Hidde Beydals Date: Mon, 11 Dec 2023 09:07:31 +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 6c40b05..6a9f954 100644 --- a/Dockerfile +++ b/Dockerfile @@ -30,7 +30,7 @@ COPY internal/ internal/ ENV CGO_ENABLED=0 RUN xx-go build -trimpath -a -o kustomize-controller main.go -FROM alpine:3.18 +FROM alpine:3.19 ARG TARGETPLATFORM From 4d474e96ede5ef12fcd259375fc5ab26628fce65 Mon Sep 17 00:00:00 2001 From: Hidde Beydals Date: Mon, 11 Dec 2023 09:08:00 +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 6a9f954..717e1e8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ 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