From 8a9a892f0d9d0d5e0adef104a88bcb05f1b51095 Mon Sep 17 00:00:00 2001 From: Devin Buhl Date: Wed, 10 May 2023 09:26:50 -0400 Subject: [PATCH] Update Alpine to 3.18 This change would be nice to get in because MUSL finally implemented TCP fallback in their DNS resolver. alpinelinux.org/posts/Alpine-3.18.0-released.html Signed-off-by: Devin Buhl --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 05e4bf028..1c14c613a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -31,7 +31,7 @@ COPY internal/ internal/ ENV CGO_ENABLED=0 RUN xx-go build -trimpath -a -o helm-controller main.go -FROM alpine:3.17 +FROM alpine:3.18 # link repo to the GitHub Container Registry image LABEL org.opencontainers.image.source="https://github.com/fluxcd/helm-controller"