chore: improve renovate dependency detection
Docker Build and Push / lint (pull_request) Successful in 9s
Docker Build and Push / build (pull_request) Successful in 53s
Docker Build and Push / test (pull_request) Successful in 20s
Docker Build and Push / push (pull_request) Has been skipped

- Add custom regexManager to detect jcabillot/phpapache base image version from ARG VERSION
This commit is contained in:
Sagent
2026-06-09 02:20:05 +00:00
parent 90464c7a0a
commit 31b0445939
+15
View File
@@ -0,0 +1,15 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"customManagers": [
{
"customType": "regex",
"description": "Detect ARG VERSION pin for jcabillot/phpapache base image",
"fileMatch": ["^Dockerfile$"],
"matchStrings": [
"ARG\\s+VERSION=\"(?<currentValue>[^\"]+)\""
],
"depNameTemplate": "jcabillot/phpapache",
"datasourceTemplate": "docker"
}
]
}