debuerreotype / docker-debian-artifacts

Official builds of debuerreotype-generated Debian tarballs for use in Docker
https://docker.debian.net
Apache License 2.0
317 stars 104 forks source link

buster-20220822 dropped some arch support #170

Closed siggy closed 2 years ago

siggy commented 2 years ago

debian:buster-20220822-slim and friends dropped support for a number of architectures:

$ docker manifest inspect debian:buster-20220801-slim | jq -r '.manifests[].platform | "\(.architecture)/\(.os)/\(.variant)"'
amd64/linux/null
arm/linux/v5
arm/linux/v7
arm64/linux/v8
386/linux/null
mips64le/linux/null
ppc64le/linux/null
s390x/linux/null

$ docker manifest inspect debian:buster-20220822-slim | jq -r '.manifests[].platform | "\(.architecture)/\(.os)/\(.variant)"'
amd64/linux/null
arm/linux/v7
arm64/linux/v8
386/linux/null

is this expected? i haven't been able to identify the root cause of this. here are some places that appear to be related:

tianon commented 2 years ago

Yes, this is unfortunately expected -- see https://wiki.debian.org/LTS.

tianon commented 2 years ago

See also http://deb.debian.org/debian-security/dists/buster/updates/main/ (the security mirror is now limited to only the set of LTS-supported architectures).

siggy commented 2 years ago

Thanks for the helpful info @tianon. I'm going to close this for now (and upgrade our builds to use bullseye).