The image is raw Debian 12 created using 'debootstrap'.
280

The image is created using debootstrap in debian 12,
debootstrap bookworm <directory-name> tar -C <directory-name> -cf debian12-raw.tar . docker import debian12-raw.tar abc101/debian12:raw
To check the version,
docker pull abc101/debian12:raw docker run abc101/debian12:raw cat /etc/os-release
This image cannot be used as-is because it contains only minimal system units. To use it as a functional system, install any required packages specific to your system needs.
Example:
docker run --name rawfish -it abc101/debian12:raw bash
or run it as a background process,
docker run --name rawfish -id abc101/debian12:raw bash
Install Rosetta first,
softwareupdate --install-rosetta
Content type
Image
Digest
sha256:e01388238…
Size
131.6 MB
Last updated
over 2 years ago
docker pull abc101/debian12