Pin FROM alpine:3 → FROM alpine:3.23 (explicit minor version)
Why
FROM alpine:3 is a floating major tag — it always resolves to the latest 3.x release, making builds non-reproducible and preventing Renovate from detecting specific version updates.
Pinning to alpine:3.23 enables Renovate to properly propose updates (e.g., to alpine:3.24 when released) while keeping builds deterministic.
## What
- Pin `FROM alpine:3` → `FROM alpine:3.23` (explicit minor version)
## Why
`FROM alpine:3` is a floating major tag — it always resolves to the latest `3.x` release, making builds non-reproducible and preventing Renovate from detecting specific version updates.
Pinning to `alpine:3.23` enables Renovate to properly propose updates (e.g., to `alpine:3.24` when released) while keeping builds deterministic.
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
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.