Some Docker images tagged as a specific version are shipping a different Alpine version, such as 2.12-alpine-3.14 or 2.12-alpine-3.15 being actually Alpine 3.16.
❯ docker run --rm -it willhallonline/ansible:2.12-alpine-3.14 sh
/ansible # cat /etc/issue
Welcome to Alpine Linux 3.16
Kernel \r on an \m (\l)
/ansible # apk add vim
fetch https://dl-cdn.alpinelinux.org/alpine/v3.16/main/x86_64/APKINDEX.tar.gz
fetch https://dl-cdn.alpinelinux.org/alpine/v3.16/community/x86_64/APKINDEX.tar.gz
...
This breaks automated workflows when expecting specific versions but the base Alpine image is a different release.
Some Docker images tagged as a specific version are shipping a different Alpine version, such as
2.12-alpine-3.14
or2.12-alpine-3.15
being actually Alpine 3.16.This breaks automated workflows when expecting specific versions but the base Alpine image is a different release.