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

VERSION_ID missing from debian:trixie image (`/etc/os-release`) #209

Closed fauust closed 1 year ago

fauust commented 1 year ago

Hi! Is there any particular reason why the debian:trixie image does not contain the according VERSION_ID in /etc/os-release file, see bellow:

.venv ❯ podman run --rm debian:bookworm grep VERSION_ID /etc/os-release
VERSION_ID="12"
.venv ❯ podman run --rm debian:trixie grep VERSION_ID /etc/os-release
tianon commented 1 year ago

That file is owned by the base-files package (https://tracker.debian.org/pkg/base-files):

$ dpkg -S /etc/os-release
base-files: /etc/os-release
tianon commented 1 year ago

Looking at https://tracker.debian.org/news/1433360/accepted-base-files-13-source-into-unstable/, this was intentional -- if I had to guess, I'd imagine the intent is to signal that "trixie" is not a released version yet.

tianon commented 1 year ago

(Closing since there's nothing we are going to change in the image, but feel free to continue discussing here.)

fauust commented 1 year ago

Ok, thanks @tianon for the pointers!