Hello all, maybe a dumb question, but looking at p...
# ask-community
m
Hello all, maybe a dumb question, but looking at prebuilt docker images from Prefect for example , how can I tell if this is ubuntu based or alpine based?
r
In your link, I see apt-get, which indicates a Debian-based OS. You can check the Dockerfile on GitHub and see the base image is from
python
, which is based on the
debian
image. Ubuntu is based off debian.
m
@Roman Ruiz Got it, thank you so much
@Roman Ruiz Is there a way to tell also the Debian version?
r
Copy code
docker run --rm prefecthq/prefect:2.20.7-python3.12 cat /etc/os-release

PRETTY_NAME="Debian GNU/Linux 12 (bookworm)"
NAME="Debian GNU/Linux"
VERSION_ID="12"
VERSION="12 (bookworm)"
VERSION_CODENAME=bookworm
ID=debian
HOME_URL="<https://www.debian.org/>"
SUPPORT_URL="<https://www.debian.org/support>"
BUG_REPORT_URL="<https://bugs.debian.org/>"
thank you 1