A Debian (Bullseye) slim-based Docker image preconfigured with a specified version of CMake, offering a stable foundation for building and testing modern software projects.
- Specific CMake Version: The image tag indicates the version of CMake installed, ensuring you know exactly which version you're working with.
- "Latest" Tag: You can also use the
latesttag to always pull the most recently published version. - Lightweight: Built on the slim variant of Debian Bullseye to keep the image size small.
Pull the image from Docker Hub:
# Pull a specific CMake version
docker pull astrumforge/bullseye-base:<cmake-version>
# Or pull the latest published version
docker pull astrumforge/bullseye-base:latestUse it as a base in your Dockerfile:
FROM astrumforge/bullseye-base:<cmake-version>
# Add your build steps hereReplace <cmake-version> with the desired CMake version tag (e.g., 3.31.1).
- CMake Website: https://cmake.org
- Docker Repository: https://hub.docker.com/r/astrumforge/bullseye-base