Fix Docker CI smoke test by loading Buildx output and installing package non-editably - #5
Merged
Conversation
twomathematicians-code
marked this pull request as ready for review
July 15, 2026 15:16
Copilot
AI
changed the title
[WIP] Fix failing GitHub Actions job Build Docker image
Fix Docker CI smoke test by loading Buildx output and installing package non-editably
Jul 15, 2026
Copilot stopped work on behalf of
twomathematicians-code due to an error
July 15, 2026 15:17
twomathematicians-code
approved these changes
Jul 15, 2026
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.
Pull request template
Description
The
Build Docker imageGitHub Actions job failed at smoke-test time becausechen:ciwas not loaded into the local Docker daemon, and the container runtime then surfaced a package import failure path. This PR makes the Docker CI build output runnable in-job and ensures the runtime image has an importablecheninstallation.docker run chen:ci ...uses the just-built image.chencorrectly.Type of change
Related issues
How was this tested?
make test-fastpasses locallymake lintpassesmake typecheckpasses (or N/A)Checklist
make formaton my codemake test-fastNotes for reviewers
Focus review on the two-line behavioral changes in:
.github/workflows/ci.yml(load: trueunder Docker Buildx step)docker/Dockerfile(non-editable install in builder stage)Both changes are directly tied to making the CI Docker smoke-test path executable.