This container image has CMake and other utilities and libraries installed for
cross-compiling Ziti projects. The image is
automatically published to Docker Hub as
openziti/ziti-builder:main when merging to main.
Finalized releases are published as semver tags (e.g. v3.0.4) and the Docker image is tagged accordingly (e.g. :3.0.4, :v3). The :latest tag is only updated for the highest semver release.
Maintenance releases are produced from major-version branches (e.g. v1). Branch builds publish preview tags (e.g. :v1-dev, :v1-<sha>); the stable :v1 tag is only updated when a finalized semver tag is pushed.
See RELEASING.md for the complete release workflow.
Building this image is unnecessary for building the Ziti projects that use this image. This section is about releasing an improvement for the image to Docker Hub for developers and CI to use with all Ziti projects that employ this image to build the project.
# optionally substitute podman or nerdctl for docker
docker build . --tag ziti-builder-testChange to the directory of the Ziti project you want to test building the default target. Run your local test image with that project mounted in the correct path and your UID to avoid permissions conflicts in the build output directory.
# optionally substitute podman or nerdctl for docker
docker run \
--rm \
--user="${UID}" \
--volume="${PWD}:/github/workspace" \
ziti-builder-test ./ziti-builder.sh- Create a pull request targeting
main(current major line) or a maintenance branch likev1. - Merge the pull request.
- Finalize a release by publishing a GitHub Release with a semver tag
vMAJOR.MINOR.PATCH. - The tag push triggers CI to build and publish the image to Docker Hub.
Ziti projects that build with this image will produce artifacts that require a GLIBC version greater than or equal to the version of GLIBC installed in the image.
| ziti-builder Version | Ubuntu Release | GLIBC Version | libssl Version |
|---|---|---|---|
| v1 | bionic | 2.27-3ubuntu1.6 | 1.1.1-1ubuntu2.1~18.04.23 |
| v2 | focal | 2.31-0ubuntu9.17 | 1.1.1f-1ubuntu2.24 |
| v3 | jammy | 2.35-0ubuntu3.9 | 3.0.2-0ubuntu1.19 |
| v4 (future) | noble | 2.39-0ubuntu8.4 | 3.0.13-0ubuntu3.5 |