From 1217281f787afed3e71abd1f6d554d043c27c453 Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Tue, 15 Aug 2023 17:07:14 +0200 Subject: [PATCH] Use go docker image with alpine 3.18 The 3.18 includes a fix for a bug in musl libc when there is a `search .` in /etc/resolv.conf. Fixes: https://github.com/k0sproject/k0s/issues/3351 Ref: https://www.openwall.com/lists/musl/2022/08/31/5 Signed-off-by: Natanael Copa --- embedded-bins/Makefile.variables | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/embedded-bins/Makefile.variables b/embedded-bins/Makefile.variables index 3cf87673b548..25d63e570c94 100644 --- a/embedded-bins/Makefile.variables +++ b/embedded-bins/Makefile.variables @@ -1,6 +1,6 @@ alpine_version = 3.17 alpine_patch_version = $(alpine_version).4 -golang_buildimage=docker.io/library/golang:$(go_version)-alpine$(alpine_version) +golang_buildimage=docker.io/library/golang:$(go_version)-alpine3.18 go_version = 1.20.7 runc_version = 1.1.9