Move rdfind dedup to intermediate aggregator stage, remove from final runtime image#25
Merged
hsbt merged 2 commits intosplit-image-buildfrom Mar 4, 2026
Merged
Conversation
… image Co-authored-by: hsbt <12301+hsbt@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Update Dockerfile to split into parallel build groups
Move rdfind dedup to intermediate aggregator stage, remove from final runtime image
Mar 4, 2026
There was a problem hiding this comment.
Pull request overview
This PR reduces the final runtime container image’s attack surface by moving the one-shot rdfind hardlink deduplication step out of the runtime stage into a new intermediate build stage.
Changes:
- Added a new
aggregatorstage (based onbuilder-bullseye) that merges/build-all-ruby/outputs from the six Ruby build stages and runsrdfindonce there. - Removed
rdfindfrom the final runtime image’sapt-get installlist. - Simplified the final runtime stage to copy
/build-all-ruby/from theaggregatorstage instead of copying it repeatedly from each Ruby build stage.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
You can also share your feedback on Copilot code review. Take the survey.
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.
rdfindwas being installed in the final runtime image solely to run a one-shot hardlink dedup step, unnecessarily increasing the image's attack surface.Changes
New
aggregatorstage — based onbuilder-bullseye(which already hasrdfind), copies/build-all-ruby/from all six parallel build group stages and runs the dedup:Final stage — replaced six individual
COPY --from=ruby-* /build-all-ruby/lines with a singleCOPY --from=aggregator, and droppedrdfindfrom theapt-get installlist entirely.💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.