Pin base image digests and add Renovate for automated updates

Renovate will open PRs automatically when debian:bookworm-slim or
debian:sid-slim receive updates (e.g. security patches), keeping the
container current without relying solely on scheduled rebuilds.
This commit is contained in:
Dan C Williams 2026-02-26 11:53:35 -06:00
parent 160d10da37
commit 82bd9081c8
3 changed files with 19 additions and 4 deletions

15
renovate.json Normal file
View file

@ -0,0 +1,15 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["config:recommended"],
"docker": {
"pinDigests": true
},
"packageRules": [
{
"matchManagers": ["dockerfile"],
"matchPackageNames": ["debian"],
"commitMessageTopic": "debian base image",
"schedule": ["at any time"]
}
]
}