fix(build): remove --link from COPY to restore Podman/Buildah compatibility - #63085
Closed
kyssta-exe wants to merge 1 commit into
Closed
fix(build): remove --link from COPY to restore Podman/Buildah compatibility#63085kyssta-exe wants to merge 1 commit into
kyssta-exe wants to merge 1 commit into
Conversation
…bility Buildah (used by Podman) does not support the --link flag in COPY instructions. Remove --link while keeping --chmod, which Buildah does support, to maintain the permission-baking optimization. Fixes NousResearch#62849
Collaborator
Duplicate of #62906 (earlier open fix for #62849). Same minimal change — drop the BuildKit-only |
This was referenced Jul 12, 2026
Contributor
Author
|
Closing as duplicate — marked with duplicate label. The earlier canonical PR addresses the same Docker COPY --link fix. |
1 task
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.
Fixes #62849
Buildah (used by Podman) does not support the
--linkflag in COPYinstructions. Remove
--linkwhile keeping--chmod, which Buildahdoes support, to maintain the permission-baking optimization.