You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have written this script, following README. But with this I get issues while compiling, about fsouza/go-dockerclient used from different locations when doing godep restore and godep save it causes some conflicts with the dependencies used in imagebuilder, as github.com/docker/docker/builder/command not found, it seems to have been removed from upstream docker.
+ go build -tags experimental -o kompose ./cli/main/
# github.com/skippbox/kompose/pkg/transformer/kubernetes
pkg/transformer/kubernetes/k8sutils.go:55: cannot use client (type
*"github.com/skippbox/kompose/vendor/github.com/fsouza/go-dockerclient".Client) as type*"github.com/openshift/imagebuilder/vendor/github.com/fsouza/go-dockerclient".Client in
argument to dockerclient.NewClientExecutor
pkg/transformer/kubernetes/k8sutils.go:65: type map[string]string is not an expression
Tried doing godep restore and godep save ./... but then facing this issue of
$ godep save ./...
godep: Package (github.com/docker/docker/builder/command) not found
The text was updated successfully, but these errors were encountered:
In order for you to build, you'll need to resolve your differences from the go-dockerclient. You can do that by deleting the vendor directory under image builder for go-dockerclient.
This seems weird - all of that should be vendor protected. Either way I've merged the 1.12 vendoring and it should be better now. Reopen if this continues.
I have written this script, following README. But with this I get issues while compiling, about
fsouza/go-dockerclient
used from different locations when doinggodep restore
andgodep save
it causes some conflicts with the dependencies used inimagebuilder
, asgithub.jparrowsec.cn/docker/docker/builder/command
not found, it seems to have been removed from upstream docker.But when compiling I get errors as:
Tried doing
godep restore
andgodep save ./...
but then facing this issue ofThe text was updated successfully, but these errors were encountered: