From 6ad32f7fb876166ac5f73748c53acf8f599f2a90 Mon Sep 17 00:00:00 2001 From: Sheogorath <sheogorath@shivering-isles.com> Date: Thu, 7 Sep 2023 23:17:21 +0200 Subject: [PATCH] chore(images): Switch to debian 12 as golang base image This patch adjust to a different go base image, this is useful since the goal is to use distroless images, which are also based on debian, so using debian instead of alpine should help to reduce unexpected problems regarding libc. --- images/mirror/Earthfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/mirror/Earthfile b/images/mirror/Earthfile index 287567bed..30e8aeb8f 100644 --- a/images/mirror/Earthfile +++ b/images/mirror/Earthfile @@ -13,7 +13,7 @@ distroless-static: DO +MIRROR --image=gcr.io/distroless/static:nonroot@sha256:92d40eea0b5307a94f2ebee3e94095e704015fb41e35fc1fcbd1d151cc282222 golang: - DO +MIRROR --image=docker.io/library/golang:1.21.0-alpine + DO +MIRROR --image=docker.io/library/golang:1.21.0-bookworm alpine: DO +MIRROR --image=docker.io/library/alpine:3.18.3 -- GitLab