Community-maintained Ubuntu base image for the B19 fleet
- Shell 93.1%
- Dockerfile 4.3%
- Makefile 1.6%
- Jinja 1%
| Filename | Latest commit message | Latest commit date |
|---|---|---|
|
All checks were successful
published / source-is-tested (push) Successful in 1s
published / fetched (push) Successful in 1s
published / projectfile-is-valid (push) Successful in 4s
published / source-is-compliant (push) Successful in 7s
published / source-is-secure (push) Successful in 8s
published / projectfile-is-ok (push) Successful in 4s
published / source-passes-lint (push) Successful in 38s
published / source-is-ok (push) Successful in 0s
published / documentation-passes-lint (push) Successful in 50s
published / documentation-is-ok (push) Successful in 0s
published / inputs-are-ok (push) Successful in 0s
published / image-is-built (noble, amd64) (push) Successful in 1m32s
published / image-is-built (resolute, amd64) (push) Successful in 1m32s
published / image-is-built (noble, riscv64) (push) Successful in 4m51s
published / image-is-built (noble, arm64) (push) Successful in 5m59s
published / image-is-built (resolute, arm64) (push) Successful in 7m5s
published / image-is-built (resolute, riscv64) (push) Successful in 8m7s
published / image-is-secure (resolute, riscv64) (push) Successful in 20s
published / image-is-secure (noble, riscv64) (push) Successful in 20s
published / image-is-secure (resolute, arm64) (push) Successful in 20s
published / image-is-secure (resolute, amd64) (push) Successful in 20s
published / secrets-ready (push) Successful in 0s
published / image-is-secure (noble, arm64) (push) Successful in 20s
published / image-is-secure (noble, amd64) (push) Successful in 20s
published / images-are-ok (push) Successful in 0s
published / container-is-ok (push) Successful in 0s
published / container-ready-to-test (push) Successful in 0s
published / container-is-verified (noble, amd64) (push) Successful in 20s
published / container-is-verified (resolute, amd64) (push) Successful in 21s
published / image-is-ready (push) Successful in 0s
published / artifacts-are-ok (push) Successful in 0s
published / ready-to-publish (push) Successful in 0s
published / publish-image (noble, dockerhub) (push) Has been skipped
published / publish-image (noble, kiota) (push) Has been skipped
published / publish-image (resolute, dockerhub) (push) Has been skipped
published / publish-image (resolute, kiota) (push) Has been skipped
published / published (push) Has been skipped
|
||
| .compose | ||
| .container | ||
| .forgejo/workflows | ||
| .github/workflows | ||
| .makefile | ||
| .scripts | ||
| docs | ||
| LICENSES | ||
| scaffold | ||
| .claudeignore | ||
| .containerignore | ||
| .dockerignore | ||
| .gitattributes | ||
| .gitignore | ||
| .gitmodules | ||
| .hadolint.yaml | ||
| AGENTS.md | ||
| AI_POLICY.md | ||
| CITATION.cff | ||
| CLAUDE.md | ||
| CODE_OF_CONDUCT.md | ||
| CODEOWNERS | ||
| CONTRIBUTING.md | ||
| Dockerfile | ||
| FEATURES.md | ||
| lefthook.yaml | ||
| LICENSE | ||
| Makefile | ||
| projectfile.yaml | ||
| README.md | ||
| SECURITY.md | ||
| SUPPORT.md | ||
B19 / Ubuntu
Community-maintained Ubuntu base image for the B19 fleet
Features
- Persistent APT cache across builds
- Service process management with log routing (b19-exec)
- Cached artifact downloads with integrity verification
- Timed command execution with failure reporting (b19-run)
- Run-once initialization (bootstrap.d)
- Modular build hooks (build.d)
- Automatic CPU count detection
- Declarative dependency management (b19-deps)
- Pluggable startup system (entrypoint.d)
- Feature toggles for all subsystems
- Built-in health monitoring (healthcheck.d)
- Multilingual shell output (b19-i18n)
- Image lineage tracking
- Structured, level-filtered logging (b19-log)
- Non-root container by default
- Air-gapped / offline build and runtime support
- Runtime overlay injection
- Reproducible base image (pinned by digest)
- Port validation
- Unified lifecycle runner family
- Docker secrets auto-loading
- Interactive shell hooks
- Graceful signal handling
- Jinja2 configuration templates (minijinja-cli)
- Built-in test framework (test.d)
- Pre-installed utility tools
- XDG Base Directory paths
See FEATURES.md for the full list.
What this provides
- Container image
ghcr.io/damian-buho/b19/ubuntu/resolute:latest - Container image
ghcr.io/damian-buho/b19/ubuntu/noble:latest - Container image
docker.io/damianbuho/b19-ubuntu-resolute:latest - Container image
docker.io/damianbuho/b19-ubuntu-noble:latest
Supported platforms
linux/amd64linux/arm64linux/riscv64
Installation
Pull the published container image:
Pull from GHCR
docker pull ghcr.io/damian-buho/b19/ubuntu/resolute:latest
docker pull ghcr.io/damian-buho/b19/ubuntu/noble:latest
Pull from DockerHub
docker pull docker.io/damianbuho/b19-ubuntu-resolute:latest
docker pull docker.io/damianbuho/b19-ubuntu-noble:latest
Stable releases also publish X.Y.Z, X.Y and X tags — pull the precision you want to pin.
If the registries above are unreachable, pull from the origin instead:
Pull from Kiota
docker pull kiota.ch/b19/ubuntu/resolute:latest
docker pull kiota.ch/b19/ubuntu/noble:latest
Usage
Build on top of this image:
From GHCR
FROM ghcr.io/damian-buho/b19/ubuntu/resolute:latest
FROM ghcr.io/damian-buho/b19/ubuntu/noble:latest
From DockerHub
FROM docker.io/damianbuho/b19-ubuntu-resolute:latest
FROM docker.io/damianbuho/b19-ubuntu-noble:latest
For the recommended multi-stage pattern and the build-hook system (build.d), scaffold a derivative with b19/scripts/scaffold.sh from m6e/b19.
Building
Run make with no arguments for the default target; run make help to list every target.
For the local dev loop, make dev-container brings up the dev-container.
Pipeline entry points:
make analyze— Run the heavy analysis sweep (mutation testing, benchmarks)make audited— Re-scan the pinned dependencies and published artifacts for new vulnerabilitiesmake check-outdated— Report every pinned dependency that lags upstreammake ready-to-publish— Run the pseudo-CI pipeline locally — build, test and scan, without publishing
Documentation
- Configure the image environment
- Use the APT cache
- Manage long-running processes with b19-exec
- Download files with b19-fetch
- Log with b19-log
- Run commands with b19-run
- Initialize state once with bootstrap.d
- Build images with build.d hooks
- Use NUMPROCS CPU detection
- Declare dependencies
- Start containers with entrypoint.d
- Write healthchecks
- Translate strings with b19-i18n
- Track image lineage
- Run as a non-root user
- Run offgrid builds
- Ship files with overlays
- Build on the pinned base
- Validate ports
- Use the runner family
- Load secrets
- Enhance interactive shells
- Handle signals gracefully
- Render templates with minijinja
- Test images with test.d
- Use the tools
- Use the XDG paths
Policies
Links
License
This project is licensed under MIT — see the LICENSE file for details.