[AAASM-3526] π (docker): Fix base-image registry org (agent-assembly β ai-agent-assembly)#1196
Merged
Chisanan232 merged 1 commit intoJun 21, 2026
Conversation
β¦embly The 9 base-image Dockerfile header comments referenced the wrong GHCR org (ghcr.io/agent-assembly/...), which would mislead users to a non-existent registry path. The canonical org is ai-agent-assembly. These are usage-example FROM comments; no real build line depended on the wrong spelling. Closes AAASM-3526 Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Contributor
Author
π€ Claude Code β PR review (record)CI: β
all green β Scope vs AAASM-3526: β
fully covers it. All 9 base-image Dockerfiles had their header usage-example registry corrected Verdict: β
Ready to approve & merge. |
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.
Description
The 9 base-image Dockerfile header comments referenced the wrong GHCR org
ghcr.io/agent-assembly/...(missing theai-prefix). The canonical org isai-agent-assembly, so the published images live atghcr.io/ai-agent-assembly/.... The wrong spelling would point users at a non-existent registry path.This replaces every
ghcr.io/agent-assembly/βghcr.io/ai-agent-assembly/in the 9docker/Dockerfile.*base images (python 3.12/3.13/3.14-slim, node 20/22/24-slim, go 1.24/1.25/1.26-alpine). All 9 occurrences are in# FROM ...usage-example comments β no realFROM/build line depended on the wrong spelling. Onlydocker/Dockerfile.*is touched; otherdocker/files are owned by a parallel ticket.Type of Change
Breaking Changes
Related Issues
Testing
git grep "ghcr.io/agent-assembly/" -- docker/Dockerfile.*returns 0 matches after the fix (was 9 before). Sanity-checked one image builds:docker build -f docker/Dockerfile.go-1.24-alpine .completed successfully (exit 0).Checklist
cargo fmt,cargo clippy)Closes AAASM-3526