From 018ba4b8981762691bf739dd750668a35279e06b Mon Sep 17 00:00:00 2001 From: Techassi Date: Mon, 29 Jun 2026 12:18:58 +0200 Subject: [PATCH 1/2] refactor(stackable-base): Use build args for tool versions --- stackable-base/Dockerfile | 13 +++---------- stackable-base/boil-config.toml | 14 ++++++++++++++ 2 files changed, 17 insertions(+), 10 deletions(-) diff --git a/stackable-base/Dockerfile b/stackable-base/Dockerfile index da9d42f96..a7da1402b 100644 --- a/stackable-base/Dockerfile +++ b/stackable-base/Dockerfile @@ -9,16 +9,9 @@ FROM local-image/stackable-devel AS rust-binaries -# Find the latest version here: https://github.com/stackabletech/config-utils/tags -# renovate: datasource=github-tags packageName=stackabletech/config-utils -ENV CONFIG_UTILS_VERSION=0.4.0 -# Find the latest version here: https://github.com/stackabletech/containerdebug/tags -# renovate: datasource=github-tags packageName=stackabletech/containerdebug -ENV CONTAINERDEBUG_VERSION=0.4.0 -# Find the latest version here: https://github.com/stackabletech/secret-operator/tags -# I could not find support for prefixes or regex in https://docs.renovatebot.com/modules/datasource/github-tags/, -# so I was unable to add a renovate hint. -ENV CERT_TOOLS_VERSION=0.1.1 +ARG CONFIG_UTILS_VERSION +ARG CONTAINERDEBUG_VERSION +ARG CERT_TOOLS_VERSION RUN < Date: Mon, 29 Jun 2026 12:19:41 +0200 Subject: [PATCH 2/2] chore(stackable-base): Adjust containerdebug source --- stackable-base/Dockerfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/stackable-base/Dockerfile b/stackable-base/Dockerfile index a7da1402b..48c879e19 100644 --- a/stackable-base/Dockerfile +++ b/stackable-base/Dockerfile @@ -18,12 +18,12 @@ RUN <