-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
go get -u github.com/tonistiigi/fsutil
fails
#133
Comments
Some other dependency probably switches docker to the wrong version for you. |
I'm having a similar problem, and I'm confused by the state of the dependencies— or rather, I'm confused by the versioning of |
And I've been trying to work around this by forcing the |
Maybe @thaJeztah can help with some workarounds, but yes, the tagging releases of docker/cli and docker/docker is quite fundamentally incompatible with go.mod and tbh Go specifically made changes to gomod between some versions to break these repos even further. I think your best approach is to pick a buildkit version you want to use (as buildkit uses gomod) then look up the |
Probably this is resolved now that we have merged #136, but worth checking if there's still issues remaining |
When I run
go get -u github.com/tonistiigi/fsutil
, I get the following error:It seems to be due to the dependency
docker/docker
. Even though the commit (87521affb077) ofdocker/docker
in the currentgo.mod
seems to include the code changes related toMatchInfo
andMatchesUsingParentResults
, it is somehow failing.However, when I tried using the latest version of
docker/docker
(v20.10.3-0.20220524152814-18529568d3fb), it seems to work without issues.This is causing problems when I am trying to build something else which has this as a dependency.
The text was updated successfully, but these errors were encountered: