-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This copies the github.com/moby/buildkit/util/appcontext package as an internal package. The appcontext package from BuildKit was the only remaining dependency on BuildKit, and while we may need some of its functionality, the implementation is not correct for how it's used in docker/cli (so would need a rewrite). Moving a copy of the code into the docker/cli (but as internal package to prevent others from depending on it) is a first step in that process, and removes the circular dependency between BuildKit and the CLi. We are only using these: tree vendor/github.com/moby/buildkit vendor/github.com/moby/buildkit ├── AUTHORS ├── LICENSE └── util └── appcontext ├── appcontext.go ├── appcontext_unix.go ├── appcontext_windows.go └── register.go 3 directories, 6 files Before this: go mod graph | grep ' github.com/docker/cli' github.com/moby/buildkit@v0.11.6 github.com/docker/cli@v23.0.0-rc.1+incompatible After this: go mod graph | grep ' github.com/docker/cli' # (nothing) Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
- Loading branch information
Showing
10 changed files
with
5 additions
and
276 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains 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
This file contains 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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains 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