This is an automated email from the ASF dual-hosted git repository. lburgazzoli pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-k.git
commit 839773e135d3c705e701cd2b98d5b455bd193f18 Author: Luca Burgazzoli <lburgazz...@gmail.com> AuthorDate: Mon Jan 23 15:15:02 2023 +0100 feat: use eclipse-temurin:11 as runtime base image --- pkg/util/defaults/defaults.go | 2 +- script/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/util/defaults/defaults.go b/pkg/util/defaults/defaults.go index f2a39043d..b881b9a96 100644 --- a/pkg/util/defaults/defaults.go +++ b/pkg/util/defaults/defaults.go @@ -35,7 +35,7 @@ const ( KanikoVersion = "0.17.1" // baseImage -- - baseImage = "docker.io/adoptopenjdk/openjdk11:slim" + baseImage = "docker.io/eclipse-temurin:11" // LocalRepository -- LocalRepository = "/tmp/artifacts/m2" diff --git a/script/Makefile b/script/Makefile index b222fd1f7..c1d067ff4 100644 --- a/script/Makefile +++ b/script/Makefile @@ -31,7 +31,7 @@ CODEGEN_VERSION := v0.25.2 OPERATOR_SDK_VERSION := v1.16.0 KUSTOMIZE_VERSION := v4.5.4 OPM_VERSION := v1.24.0 -BASE_IMAGE := docker.io/adoptopenjdk/openjdk11:slim +BASE_IMAGE := docker.io/eclipse-temurin:11 LOCAL_REPOSITORY := /tmp/artifacts/m2 IMAGE_NAME ?= docker.io/apache/camel-k