Refactor Dockerfile ARG declarations for better organization and add renovate configuration for automated dependency updates
Some checks failed
Build k8s-mgmt-pod image / Build & Push (push) Failing after 1m40s

This commit is contained in:
Michael Trip 2026-06-24 12:42:34 +02:00
parent f0e72c69a0
commit 60c4ed3c02
2 changed files with 27 additions and 5 deletions

16
renovate.json Normal file
View file

@ -0,0 +1,16 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
],
"customManagers": [
{
"customType": "regex",
"managerFilePatterns": ["/^Dockerfile$/", "/Dockerfile.*/"],
"matchStrings": [
"# renovate: datasource=(?<datasource>.*?) depName=(?<depName>.*?)\\s+ARG .*?_VERSION=(?<currentValue>.*)\\s"
],
"datasourceTemplate": "{{{datasource}}}"
}
]
}