chore: improve renovate dependency detection #3
Reference in New Issue
Block a user
Delete Branch "chore/renovate"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
What
FROM alpine:3→FROM alpine:3.23(explicit minor version)Why
FROM alpine:3is a floating major tag — it always resolves to the latest3.xrelease, making builds non-reproducible and preventing Renovate from detecting specific version updates.Pinning to
alpine:3.23enables Renovate to properly propose updates (e.g., toalpine:3.24when released) while keeping builds deterministic.