From 2741af4a6be3d2eb8a934d2ef944490a33a6bc34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christoph=20Schw=C3=A4gerl?= Date: Wed, 28 Feb 2024 09:57:32 +0100 Subject: [PATCH] chore: Bump docker builder base image to `golang:1.22-alpine` (#160) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Description** Changes proposed in this pull request: - Bump docker builder base image to `golang:1.22-alpine` **Related issue(s)** - https://github.com/kyma-project/runtime-watcher/pull/203 - https://github.com/kyma-project/runtime-watcher/pull/202 **Performed Local Tests** - `make docker-build` ✅ - `make kustomize` ✅ - `make build-manifests` ✅ - `kyma alpha create module -p ./ --version 1.2.3 --registry k3d-registry.localhost:5111 --insecure --module-config-file ./module-config.yaml --module-archive-version-overwrite` ✅ - with template-operator applied to kcp: - enabled template-operator module in SKR; kyma transitioning to ready state ✅ - disabled template-operator module in SKR; kyma transitioning to ready state ✅ --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 90fbf5f..a2fca94 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Build the manager binary -FROM golang:1.21 as builder +FROM golang:1.22-alpine as builder ARG TARGETOS ARG TARGETARCH