feat(release): publish multi-arch Docker images to ghcr.io (26.10)#13
Merged
Conversation
The signed binary archives at /releases solve the "download a tarball"
install path. This adds the "docker pull" install path, populating the
GitHub Packages tile on the repo home.
- Dockerfile.goreleaser: slim COPY-only image consumed by goreleaser
(the existing Dockerfile keeps working for `docker build .`).
- .goreleaser.yaml: dockers: amd64+arm64 per-arch builds,
docker_manifests: stitches them under :{version} + :latest,
docker_signs: cosign keyless on the published manifests.
- .github/workflows/release.yml: QEMU + Buildx setup, ghcr.io login
via the GITHUB_TOKEN before goreleaser runs.
- README: Docker quickstart + cosign verify snippet.
The image's default entrypoint is `agent` (standalone). Wintermute and
Neuromancer ship in the same image; override the entrypoint to run
them. The existing docker-compose.yml still works — point its image:
at ghcr.io/cryptojones/networkinventoryagent:26.10.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds the `docker pull` install path. After this lands and v26.10 is tagged, the GitHub Packages tile on the repo home will populate with a multi-arch (linux/amd64 + linux/arm64) image at `ghcr.io/cryptojones/networkinventoryagent`.
```bash
docker pull ghcr.io/cryptojones/networkinventoryagent:latest
docker run --rm ghcr.io/cryptojones/networkinventoryagent:latest -version
```
Mechanics
Test plan
🤖 Generated with Claude Code