Skip to content
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

libcontainer not building. #840

Closed
shashankmjain opened this issue May 24, 2016 · 11 comments
Closed

libcontainer not building. #840

shashankmjain opened this issue May 24, 2016 · 11 comments

Comments

@shashankmjain
Copy link

shashankmjain commented May 24, 2016

On running this on ubuntu:

go get -d ./...

I end up getting these errors

package github.com/aws/aws-sdk-go/aws/service: cannot find package "github.com/aws/aws-sdk-go/aws/service" in any of:
        /home/ubuntu/shashank/go/src/github.com/aws/aws-sdk-go/aws/service (from $GOROOT)
        /home/ubuntu/shashank/src/github.com/aws/aws-sdk-go/aws/service (from $GOPATH)
package github.com/aws/aws-sdk-go/aws/service/serviceinfo: cannot find package "github.com/aws/aws-sdk-go/aws/service/serviceinfo" in any of:
        /home/ubuntu/shashank/go/src/github.com/aws/aws-sdk-go/aws/service/serviceinfo (from $GOROOT)
        /home/ubuntu/shashank/src/github.com/aws/aws-sdk-go/aws/service/serviceinfo (from $GOPATH)
package github.com/aws/aws-sdk-go/internal/endpoints: cannot find package "github.com/aws/aws-sdk-go/internal/endpoints" in any of:
        /home/ubuntu/shashank/go/src/github.com/aws/aws-sdk-go/internal/endpoints (from $GOROOT)
        /home/ubuntu/shashank/src/github.com/aws/aws-sdk-go/internal/endpoints (from $GOPATH)
package github.com/aws/aws-sdk-go/internal/protocol/json/jsonutil: cannot find package "github.com/aws/aws-sdk-go/internal/protocol/json/jsonutil" in any of:
        /home/ubuntu/shashank/go/src/github.com/aws/aws-sdk-go/internal/protocol/json/jsonutil (from $GOROOT)
        /home/ubuntu/shashank/src/github.com/aws/aws-sdk-go/internal/protocol/json/jsonutil (from $GOPATH)
package github.com/aws/aws-sdk-go/internal/protocol/rest: cannot find package "github.com/aws/aws-sdk-go/internal/protocol/rest" in any of:
        /home/ubuntu/shashank/go/src/github.com/aws/aws-sdk-go/internal/protocol/rest (from $GOROOT)
        /home/ubuntu/shashank/src/github.com/aws/aws-sdk-go/internal/protocol/rest (from $GOPATH)
package github.com/aws/aws-sdk-go/internal/protocol/jsonrpc: cannot find package "github.com/aws/aws-sdk-go/internal/protocol/jsonrpc" in any of:
        /home/ubuntu/shashank/go/src/github.com/aws/aws-sdk-go/internal/protocol/jsonrpc (from $GOROOT)
        /home/ubuntu/shashank/src/github.com/aws/aws-sdk-go/internal/protocol/jsonrpc (from $GOPATH)
package github.com/aws/aws-sdk-go/internal/signer/v4: cannot find package "github.com/aws/aws-sdk-go/internal/signer/v4" in any of:
        /home/ubuntu/shashank/go/src/github.com/aws/aws-sdk-go/internal/signer/v4 (from $GOROOT)
        /home/ubuntu/shashank/src/github.com/aws/aws-sdk-go/internal/signer/v4 (from $GOPATH)
package github.com/Sirupsen/logrus/hooks/airbrake: cannot find package "github.com/Sirupsen/logrus/hooks/airbrake" in any of:
        /home/ubuntu/shashank/go/src/github.com/Sirupsen/logrus/hooks/airbrake (from $GOROOT)
        /home/ubuntu/shashank/src/github.com/Sirupsen/logrus/hooks/airbrake (from $GOPATH)
package github.com/golang/protobuf/protoc-gen-go/internal/grpc: cannot find package "github.com/golang/protobuf/protoc-gen-go/internal/grpc" in any of:
        /home/ubuntu/shashank/go/src/github.com/golang/protobuf/protoc-gen-go/internal/grpc (from $GOROOT)
        /home/ubuntu/shashank/src/github.com/golang/protobuf/protoc-gen-go/internal/grpc (from $GOPATH)
@cyphar
Copy link
Member

cyphar commented May 24, 2016

Have you tried using the Makefile we provide in the project? We don't really support the go get method of installation, since we have to add Godeps to our GOPATH when building (which go get doesn't support unless you change all of your import statements to include the vendor directory -- which is a bad idea).

@marcosnils
Copy link
Contributor

@cyphar another idea would be to use the standard vendor solution that go provides from 1.5 onwards and drop Godeps. That way it could be possible to just go get runc from the url directly.

@shashankmjain
Copy link
Author

Hi,
I forgot to mention. Was just trying to build libcontainer.

@shashankmjain
Copy link
Author

shashankmjain commented May 24, 2016

with make run-make-install fails with tons of errors as it tries to build libcontainer within a docker container.

src/github.com/Sirupsen/logrus/examples/hook/hook.go:5:2: cannot find package "gopkg.in/gemnasium/logrus-airbrake-hook.v2" in any of:
        /usr/src/go/src/gopkg.in/gemnasium/logrus-airbrake-hook.v2 (from $GOROOT)
        /go/src/gopkg.in/gemnasium/logrus-airbrake-hook.v2 (from $GOPATH)
        /test/src/gopkg.in/gemnasium/logrus-airbrake-hook.v2
/test/src/github.com/bugsnag/bugsnag-go/revel/bugsnagrevel.go:11:2: cannot find package "github.com/revel/revel" in any of:
        /usr/src/go/src/github.com/revel/revel (from $GOROOT)
        /go/src/github.com/revel/revel (from $GOPATH)
        /test/src/github.com/revel/revel
src/github.com/bugsnag/bugsnag-go/examples/revelapp/tests/apptest.go:3:8: cannot find package "github.com/revel/revel/testing" in any of:
        /usr/src/go/src/github.com/revel/revel/testing (from $GOROOT)
        /go/src/github.com/revel/revel/testing (from $GOPATH)
        /test/src/github.com/revel/revel/testing
src/github.com/bugsnag/bugsnag-go/martini/bugsnagmiddleware.go:36:2: cannot find package "github.com/go-martini/martini" in any of:
        /usr/src/go/src/github.com/go-martini/martini (from $GOROOT)
        /go/src/github.com/go-martini/martini (from $GOPATH)
        /test/src/github.com/go-martini/martini
can't load package: package github.com/docker/libcontainer/src/github.com/coreos/go-systemd/examples/activation: no buildable Go source files in /go/src/github.com/docker/libcontainer/src/github.com/coreos/go-systemd/examples/activation
can't load package: package github.com/docker/libcontainer/src/github.com/coreos/go-systemd/examples/activation/httpserver: no buildable Go source files in /go/src/github.com/docker/libcontainer/src/github.com/coreos/go-systemd/examples/activation/httpserver
src/github.com/coreos/go-systemd/sdjournal/journal.go:212:2: cannot find package "github.com/coreos/pkg/dlopen" in any of:
        /usr/src/go/src/github.com/coreos/pkg/dlopen (from $GOROOT)
        /go/src/github.com/coreos/pkg/dlopen (from $GOPATH)
        /test/src/github.com/coreos/pkg/dlopen
/test/src/github.com/docker/containerd/supervisor/machine.go:5:8: cannot find package "github.com/cloudfoundry/gosigar" in any of:
        /usr/src/go/src/github.com/cloudfoundry/gosigar (from $GOROOT)
        /go/src/github.com/cloudfoundry/gosigar (from $GOPATH)
        /test/src/github.com/cloudfoundry/gosigar
/test/src/github.com/docker/containerd/runtime/container_linux.go:14:2: cannot find package "github.com/opencontainers/runc/libcontainer" in any of:
        /usr/src/go/src/github.com/opencontainers/runc/libcontainer (from $GOROOT)
        /go/src/github.com/opencontainers/runc/libcontainer (from $GOPATH)
        /test/src/github.com/opencontainers/runc/libcontainer
src/github.com/docker/containerd/api/grpc/server/server_linux.go:9:2: cannot find package "github.com/opencontainers/runc/libcontainer/system" in any of:
        /usr/src/go/src/github.com/opencontainers/runc/libcontainer/system (from $GOROOT)
        /go/src/github.com/opencontainers/runc/libcontainer/system (from $GOPATH)
        /test/src/github.com/opencontainers/runc/libcontainer/system
/test/src/github.com/docker/containerd/supervisor/metrics.go:3:8: cannot find package "github.com/rcrowley/go-metrics" in any of:
        /usr/src/go/src/github.com/rcrowley/go-metrics (from $GOROOT)
        /go/src/github.com/rcrowley/go-metrics (from $GOPATH)
        /test/src/github.com/rcrowley/go-metrics
/test/src/github.com/docker/containerd/api/grpc/types/api.pb.go:63:2: cannot find package "golang.org/x/net/context" in any of:
        /usr/src/go/src/golang.org/x/net/context (from $GOROOT)
        /go/src/golang.org/x/net/context (from $GOPATH)
        /test/src/golang.org/x/net/context
/test/src/github.com/docker/containerd/runtime/process.go:15:2: cannot find package "golang.org/x/sys/unix" in any of:
        /usr/src/go/src/golang.org/x/sys/unix (from $GOROOT)
        /go/src/golang.org/x/sys/unix (from $GOPATH)
        /test/src/golang.org/x/sys/unix
/test/src/github.com/docker/containerd/api/grpc/types/api.pb.go:64:2: cannot find package "google.golang.org/grpc" in any of:
        /usr/src/go/src/google.golang.org/grpc (from $GOROOT)
        /go/src/google.golang.org/grpc (from $GOPATH)
        /test/src/google.golang.org/grpc
src/github.com/docker/containerd/api/grpc/server/server.go:14:2: cannot find package "google.golang.org/grpc/codes" in any of:
        /usr/src/go/src/google.golang.org/grpc/codes (from $GOROOT)
        /go/src/google.golang.org/grpc/codes (from $GOPATH)
        /test/src/google.golang.org/grpc/codes
src/github.com/docker/containerd/containerd/main.go:18:2: cannot find package "github.com/cyberdelia/go-metrics-graphite" in any of:
        /usr/src/go/src/github.com/cyberdelia/go-metrics-graphite (from $GOROOT)
        /go/src/github.com/cyberdelia/go-metrics-graphite (from $GOPATH)
        /test/src/github.com/cyberdelia/go-metrics-graphite
/test/src/github.com/docker/docker/pkg/listeners/listeners_unix.go:13:2: cannot find package "github.com/docker/go-connections/sockets" in any of:
        /usr/src/go/src/github.com/docker/go-connections/sockets (from $GOROOT)
        /go/src/github.com/docker/go-connections/sockets (from $GOPATH)
        /test/src/github.com/docker/go-connections/sockets
src/github.com/docker/containerd/ctr/container.go:24:2: cannot find package "google.golang.org/grpc/grpclog" in any of:
        /usr/src/go/src/google.golang.org/grpc/grpclog (from $GOROOT)
        /go/src/google.golang.org/grpc/grpclog (from $GOPATH)
        /test/src/google.golang.org/grpc/grpclog
can't load package: package github.com/docker/libcontainer/src/github.com/docker/containerd/vendor/src/github.com/Azure/go-ansiterm/winterm: no buildable Go source files in /go/src/github.com/docker/libcontainer/src/github.com/docker/containerd/vendor/src/github.com/Azure/go-ansiterm/winterm
src/github.com/docker/containerd/vendor/src/github.com/docker/docker/pkg/integration/checker/checker.go:5:2: cannot find package "github.com/go-check/check" in any of:
        /usr/src/go/src/github.com/go-check/check (from $GOROOT)
        /go/src/github.com/go-check/check (from $GOPATH)
        /test/src/github.com/go-check/check
src/github.com/docker/containerd/vendor/src/github.com/docker/docker/pkg/integration/checker/checker.go:6:2: cannot find package "github.com/vdemeester/shakers" in any of:
        /usr/src/go/src/github.com/vdemeester/shakers (from $GOROOT)
        /go/src/github.com/vdemeester/shakers (from $GOPATH)
        /test/src/github.com/vdemeester/shakers
src/github.com/docker/containerd/vendor/src/github.com/docker/go-connections/sockets/unix_socket.go:13:2: cannot find package "github.com/opencontainers/runc/libcontainer/user" in any of:
        /usr/src/go/src/github.com/opencontainers/runc/libcontainer/user (from $GOROOT)
        /go/src/github.com/opencontainers/runc/libcontainer/user (from $GOPATH)
        /test/src/github.com/opencontainers/runc/libcontainer/user
src/github.com/docker/containerd/vendor/src/github.com/docker/go-connections/sockets/proxy.go:9:2: cannot find package "golang.org/x/net/proxy" in any of:
        /usr/src/go/src/golang.org/x/net/proxy (from $GOROOT)
        /go/src/golang.org/x/net/proxy (from $GOPATH)
        /test/src/golang.org/x/net/proxy
src/github.com/docker/containerd/vendor/src/github.com/opencontainers/runc/libcontainer/setns_init_linux.go:9:2: cannot find package "github.com/opencontainers/runc/libcontainer/apparmor" in any of:
        /usr/src/go/src/github.com/opencontainers/runc/libcontainer/apparmor (from $GOROOT)
        /go/src/github.com/opencontainers/runc/libcontainer/apparmor (from $GOPATH)
        /test/src/github.com/opencontainers/runc/libcontainer/apparmor
src/github.com/docker/containerd/vendor/src/github.com/opencontainers/runc/libcontainer/container_linux.go:22:2: cannot find package "github.com/opencontainers/runc/libcontainer/cgroups" in any of:
        /usr/src/go/src/github.com/opencontainers/runc/libcontainer/cgroups (from $GOROOT)
        /go/src/github.com/opencontainers/runc/libcontainer/cgroups (from $GOPATH)
        /test/src/github.com/opencontainers/runc/libcontainer/cgroups
src/github.com/docker/containerd/vendor/src/github.com/opencontainers/runc/libcontainer/factory_linux.go:18:2: cannot find package "github.com/opencontainers/runc/libcontainer/cgroups/fs" in any of:
        /usr/src/go/src/github.com/opencontainers/runc/libcontainer/cgroups/fs (from $GOROOT)
        /go/src/github.com/opencontainers/runc/libcontainer/cgroups/fs (from $GOPATH)
        /test/src/github.com/opencontainers/runc/libcontainer/cgroups/fs
src/github.com/docker/containerd/vendor/src/github.com/opencontainers/runc/libcontainer/factory_linux.go:19:2: cannot find package "github.com/opencontainers/runc/libcontainer/cgroups/systemd" in any of:
        /usr/src/go/src/github.com/opencontainers/runc/libcontainer/cgroups/systemd (from $GOROOT)
        /go/src/github.com/opencontainers/runc/libcontainer/cgroups/systemd (from $GOPATH)
        /test/src/github.com/opencontainers/runc/libcontainer/cgroups/systemd
src/github.com/docker/containerd/vendor/src/github.com/opencontainers/runc/libcontainer/container.go:11:2: cannot find package "github.com/opencontainers/runc/libcontainer/configs" in any of:
        /usr/src/go/src/github.com/opencontainers/runc/libcontainer/configs (from $GOROOT)
        /go/src/github.com/opencontainers/runc/libcontainer/configs (from $GOPATH)
        /test/src/github.com/opencontainers/runc/libcontainer/configs
src/github.com/docker/containerd/vendor/src/github.com/opencontainers/runc/libcontainer/factory_linux.go:21:2: cannot find package "github.com/opencontainers/runc/libcontainer/configs/validate" in any of:
        /usr/src/go/src/github.com/opencontainers/runc/libcontainer/configs/validate (from $GOROOT)
        /go/src/github.com/opencontainers/runc/libcontainer/configs/validate (from $GOPATH)
        /test/src/github.com/opencontainers/runc/libcontainer/configs/validate
src/github.com/docker/containerd/vendor/src/github.com/opencontainers/runc/libcontainer/container_linux.go:24:2: cannot find package "github.com/opencontainers/runc/libcontainer/criurpc" in any of:
        /usr/src/go/src/github.com/opencontainers/runc/libcontainer/criurpc (from $GOROOT)
        /go/src/github.com/opencontainers/runc/libcontainer/criurpc (from $GOPATH)
        /test/src/github.com/opencontainers/runc/libcontainer/criurpc
src/github.com/docker/containerd/vendor/src/github.com/opencontainers/runc/libcontainer/setns_init_linux.go:10:2: cannot find package "github.com/opencontainers/runc/libcontainer/keys" in any of:
        /usr/src/go/src/github.com/opencontainers/runc/libcontainer/keys (from $GOROOT)
        /go/src/github.com/opencontainers/runc/libcontainer/keys (from $GOPATH)
        /test/src/github.com/opencontainers/runc/libcontainer/keys
src/github.com/docker/containerd/vendor/src/github.com/opencontainers/runc/libcontainer/console_linux.go:10:2: cannot find package "github.com/opencontainers/runc/libcontainer/label" in any of:
        /usr/src/go/src/github.com/opencontainers/runc/libcontainer/label (from $GOROOT)
        /go/src/github.com/opencontainers/runc/libcontainer/label (from $GOPATH)
        /test/src/github.com/opencontainers/runc/libcontainer/label
src/github.com/docker/containerd/vendor/src/github.com/opencontainers/runc/libcontainer/setns_init_linux.go:12:2: cannot find package "github.com/opencontainers/runc/libcontainer/seccomp" in any of:
        /usr/src/go/src/github.com/opencontainers/runc/libcontainer/seccomp (from $GOROOT)
        /go/src/github.com/opencontainers/runc/libcontainer/seccomp (from $GOPATH)
        /test/src/github.com/opencontainers/runc/libcontainer/seccomp
src/github.com/docker/containerd/vendor/src/github.com/opencontainers/runc/libcontainer/generic_error.go:9:2: cannot find package "github.com/opencontainers/runc/libcontainer/stacktrace" in any of:
        /usr/src/go/src/github.com/opencontainers/runc/libcontainer/stacktrace (from $GOROOT)
        /go/src/github.com/opencontainers/runc/libcontainer/stacktrace (from $GOPATH)
        /test/src/github.com/opencontainers/runc/libcontainer/stacktrace
src/github.com/docker/containerd/vendor/src/github.com/opencontainers/runc/libcontainer/container_linux.go:25:2: cannot find package "github.com/opencontainers/runc/libcontainer/utils" in any of:
        /usr/src/go/src/github.com/opencontainers/runc/libcontainer/utils (from $GOROOT)
        /go/src/github.com/opencontainers/runc/libcontainer/utils (from $GOPATH)
        /test/src/github.com/opencontainers/runc/libcontainer/utils
src/github.com/docker/containerd/vendor/src/github.com/opencontainers/runc/libcontainer/init_linux.go:22:2: cannot find package "github.com/vishvananda/netlink" in any of:
        /usr/src/go/src/github.com/vishvananda/netlink (from $GOROOT)
        /go/src/github.com/vishvananda/netlink (from $GOPATH)
        /test/src/github.com/vishvananda/netlink
src/github.com/docker/containerd/vendor/src/github.com/opencontainers/runc/libcontainer/container_linux.go:27:2: cannot find package "github.com/vishvananda/netlink/nl" in any of:
        /usr/src/go/src/github.com/vishvananda/netlink/nl (from $GOROOT)
        /go/src/github.com/vishvananda/netlink/nl (from $GOPATH)
        /test/src/github.com/vishvananda/netlink/nl
src/github.com/docker/containerd/vendor/src/github.com/opencontainers/runc/libcontainer/configs/validate/validator.go:10:2: cannot find package "github.com/opencontainers/runc/libcontainer/selinux" in any of:
        /usr/src/go/src/github.com/opencontainers/runc/libcontainer/selinux (from $GOROOT)
        /go/src/github.com/opencontainers/runc/libcontainer/selinux (from $GOPATH)
        /test/src/github.com/opencontainers/runc/libcontainer/selinux
can't load package: package github.com/docker/libcontainer/src/github.com/docker/containerd/vendor/src/golang.org/x/net/context: code in directory /go/src/github.com/docker/libcontainer/src/github.com/docker/containerd/vendor/src/golang.org/x/net/context expects import "golang.org/x/net/context"
src/github.com/docker/containerd/vendor/src/golang.org/x/net/http2/frame.go:17:2: cannot find package "golang.org/x/net/http2/hpack" in any of:
        /usr/src/go/src/golang.org/x/net/http2/hpack (from $GOROOT)
        /go/src/golang.org/x/net/http2/hpack (from $GOPATH)
        /test/src/golang.org/x/net/http2/hpack
can't load package: package github.com/docker/libcontainer/src/github.com/docker/containerd/vendor/src/golang.org/x/net/internal/timeseries: code in directory /go/src/github.com/docker/libcontainer/src/github.com/docker/containerd/vendor/src/golang.org/x/net/internal/timeseries expects import "golang.org/x/net/internal/timeseries"
can't load package: package github.com/docker/libcontainer/src/github.com/docker/containerd/vendor/src/golang.org/x/net/proxy: code in directory /go/src/github.com/docker/libcontainer/src/github.com/docker/containerd/vendor/src/golang.org/x/net/proxy expects import "golang.org/x/net/proxy"
can't load package: package github.com/docker/libcontainer/src/github.com/docker/containerd/vendor/src/golang.org/x/net/trace: code in directory /go/src/github.com/docker/libcontainer/src/github.com/docker/containerd/vendor/src/golang.org/x/net/trace expects import "golang.org/x/net/trace"
can't load package: package github.com/docker/libcontainer/src/github.com/docker/containerd/vendor/src/golang.org/x/sys/unix: code in directory /go/src/github.com/docker/libcontainer/src/github.com/docker/containerd/vendor/src/golang.org/x/sys/unix expects import "golang.org/x/sys/unix"
can't load package: package github.com/docker/libcontainer/src/github.com/docker/containerd/vendor/src/google.golang.org/grpc: code in directory /go/src/github.com/docker/libcontainer/src/github.com/docker/containerd/vendor/src/google.golang.org/grpc expects import "google.golang.org/grpc"
can't load package: package github.com/docker/libcontainer/src/github.com/docker/containerd/vendor/src/google.golang.org/grpc/codes: code in directory /go/src/github.com/docker/libcontainer/src/github.com/docker/containerd/vendor/src/google.golang.org/grpc/codes expects import "google.golang.org/grpc/codes"
can't load package: package github.com/docker/libcontainer/src/github.com/docker/containerd/vendor/src/google.golang.org/grpc/credentials: code in directory /go/src/github.com/docker/libcontainer/src/github.com/docker/containerd/vendor/src/google.golang.org/grpc/credentials expects import "google.golang.org/grpc/credentials"
can't load package: package github.com/docker/libcontainer/src/github.com/docker/containerd/vendor/src/google.golang.org/grpc/grpclog: code in directory /go/src/github.com/docker/libcontainer/src/github.com/docker/containerd/vendor/src/google.golang.org/grpc/grpclog expects import "google.golang.org/grpc/grpclog"
can't load package: package github.com/docker/libcontainer/src/github.com/docker/containerd/vendor/src/google.golang.org/grpc/metadata: code in directory /go/src/github.com/docker/libcontainer/src/github.com/docker/containerd/vendor/src/google.golang.org/grpc/metadata expects import "google.golang.org/grpc/metadata"
src/github.com/docker/containerd/vendor/src/google.golang.org/grpc/peer/peer.go:42:2: cannot find package "google.golang.org/grpc/credentials" in any of:
        /usr/src/go/src/google.golang.org/grpc/credentials (from $GOROOT)
        /go/src/google.golang.org/grpc/credentials (from $GOPATH)
        /test/src/google.golang.org/grpc/credentials
can't load package: package github.com/docker/libcontainer/src/github.com/docker/containerd/vendor/src/google.golang.org/grpc/transport: code in directory /go/src/github.com/docker/libcontainer/src/github.com/docker/containerd/vendor/src/google.golang.org/grpc/transport expects import "google.golang.org/grpc/transport"
src/github.com/docker/docker/api/common.go:13:2: cannot find package "github.com/docker/engine-api/types" in any of:
        /usr/src/go/src/github.com/docker/engine-api/types (from $GOROOT)
        /go/src/github.com/docker/engine-api/types (from $GOPATH)
        /test/src/github.com/docker/engine-api/types
src/github.com/docker/docker/api/common.go:14:2: cannot find package "github.com/docker/libtrust" in any of:
        /usr/src/go/src/github.com/docker/libtrust (from $GOROOT)
        /go/src/github.com/docker/libtrust (from $GOPATH)
        /test/src/github.com/docker/libtrust
/test/src/github.com/docker/docker/distribution/pull_v2.go:14:2: cannot find package "github.com/docker/distribution" in any of:
        /usr/src/go/src/github.com/docker/distribution (from $GOROOT)
        /go/src/github.com/docker/distribution (from $GOPATH)
        /test/src/github.com/docker/distribution
src/github.com/docker/docker/api/client/trust.go:21:2: cannot find package "github.com/docker/distribution/digest" in any of:
        /usr/src/go/src/github.com/docker/distribution/digest (from $GOROOT)
        /go/src/github.com/docker/distribution/digest (from $GOPATH)
        /test/src/github.com/docker/distribution/digest
/test/src/github.com/docker/docker/distribution/pull_v2.go:16:2: cannot find package "github.com/docker/distribution/manifest/manifestlist" in any of:
        /usr/src/go/src/github.com/docker/distribution/manifest/manifestlist (from $GOROOT)
        /go/src/github.com/docker/distribution/manifest/manifestlist (from $GOPATH)
        /test/src/github.com/docker/distribution/manifest/manifestlist
/test/src/github.com/docker/docker/distribution/pull_v2.go:17:2: cannot find package "github.com/docker/distribution/manifest/schema1" in any of:
        /usr/src/go/src/github.com/docker/distribution/manifest/schema1 (from $GOROOT)
        /go/src/github.com/docker/distribution/manifest/schema1 (from $GOPATH)
        /test/src/github.com/docker/distribution/manifest/schema1
/test/src/github.com/docker/docker/distribution/pull_v2.go:18:2: cannot find package "github.com/docker/distribution/manifest/schema2" in any of:
        /usr/src/go/src/github.com/docker/distribution/manifest/schema2 (from $GOROOT)
        /go/src/github.com/docker/distribution/manifest/schema2 (from $GOPATH)
        /test/src/github.com/docker/distribution/manifest/schema2
/test/src/github.com/docker/docker/reference/reference.go:9:2: cannot find package "github.com/docker/distribution/reference" in any of:
        /usr/src/go/src/github.com/docker/distribution/reference (from $GOROOT)
        /go/src/github.com/docker/distribution/reference (from $GOPATH)
        /test/src/github.com/docker/distribution/reference
/test/src/github.com/docker/docker/distribution/errors.go:8:2: cannot find package "github.com/docker/distribution/registry/api/errcode" in any of:
        /usr/src/go/src/github.com/docker/distribution/registry/api/errcode (from $GOROOT)
        /go/src/github.com/docker/distribution/registry/api/errcode (from $GOPATH)
        /test/src/github.com/docker/distribution/registry/api/errcode
/test/src/github.com/docker/docker/distribution/errors.go:9:2: cannot find package "github.com/docker/distribution/registry/api/v2" in any of:
        /usr/src/go/src/github.com/docker/distribution/registry/api/v2 (from $GOROOT)
        /go/src/github.com/docker/distribution/registry/api/v2 (from $GOPATH)
        /test/src/github.com/docker/distribution/registry/api/v2
/test/src/github.com/docker/docker/distribution/errors.go:10:2: cannot find package "github.com/docker/distribution/registry/client" in any of:
        /usr/src/go/src/github.com/docker/distribution/registry/client (from $GOROOT)
        /go/src/github.com/docker/distribution/registry/client (from $GOPATH)
        /test/src/github.com/docker/distribution/registry/client
src/github.com/docker/docker/api/client/trust.go:22:2: cannot find package "github.com/docker/distribution/registry/client/auth" in any of:
        /usr/src/go/src/github.com/docker/distribution/registry/client/auth (from $GOROOT)
        /go/src/github.com/docker/distribution/registry/client/auth (from $GOPATH)
        /test/src/github.com/docker/distribution/registry/client/auth
src/github.com/docker/docker/api/client/trust.go:23:2: cannot find package "github.com/docker/distribution/registry/client/transport" in any of:
        /usr/src/go/src/github.com/docker/distribution/registry/client/transport (from $GOROOT)
        /go/src/github.com/docker/distribution/registry/client/transport (from $GOPATH)
        /test/src/github.com/docker/distribution/registry/client/transport
src/github.com/docker/docker/api/client/cli.go:19:2: cannot find package "github.com/docker/engine-api/client" in any of:
        /usr/src/go/src/github.com/docker/engine-api/client (from $GOROOT)
        /go/src/github.com/docker/engine-api/client (from $GOPATH)
        /test/src/github.com/docker/engine-api/client
/test/src/github.com/docker/docker/runconfig/opts/throttledevice.go:8:2: cannot find package "github.com/docker/engine-api/types/blkiodev" in any of:
        /usr/src/go/src/github.com/docker/engine-api/types/blkiodev (from $GOROOT)
        /go/src/github.com/docker/engine-api/types/blkiodev (from $GOPATH)
        /test/src/github.com/docker/engine-api/types/blkiodev
/test/src/github.com/docker/docker/image/image.go:10:2: cannot find package "github.com/docker/engine-api/types/container" in any of:
        /usr/src/go/src/github.com/docker/engine-api/types/container (from $GOROOT)
        /go/src/github.com/docker/engine-api/types/container (from $GOPATH)
        /test/src/github.com/docker/engine-api/types/container
src/github.com/docker/docker/api/client/events.go:20:2: cannot find package "github.com/docker/engine-api/types/events" in any of:
        /usr/src/go/src/github.com/docker/engine-api/types/events (from $GOROOT)
        /go/src/github.com/docker/engine-api/types/events (from $GOPATH)
        /test/src/github.com/docker/engine-api/types/events
src/github.com/docker/docker/api/client/events.go:21:2: cannot find package "github.com/docker/engine-api/types/filters" in any of:
        /usr/src/go/src/github.com/docker/engine-api/types/filters (from $GOROOT)
        /go/src/github.com/docker/engine-api/types/filters (from $GOPATH)
        /test/src/github.com/docker/engine-api/types/filters
/test/src/github.com/docker/docker/api/server/httputils/decoder.go:7:2: cannot find package "github.com/docker/engine-api/types/network" in any of:
        /usr/src/go/src/github.com/docker/engine-api/types/network (from $GOROOT)
        /go/src/github.com/docker/engine-api/types/network (from $GOPATH)
        /test/src/github.com/docker/engine-api/types/network
/test/src/github.com/docker/docker/registry/auth.go:15:2: cannot find package "github.com/docker/engine-api/types/registry" in any of:
        /usr/src/go/src/github.com/docker/engine-api/types/registry (from $GOROOT)
        /go/src/github.com/docker/engine-api/types/registry (from $GOPATH)
        /test/src/github.com/docker/engine-api/types/registry
/test/src/github.com/docker/docker/runconfig/opts/parse.go:18:2: cannot find package "github.com/docker/engine-api/types/strslice" in any of:
        /usr/src/go/src/github.com/docker/engine-api/types/strslice (from $GOROOT)
        /go/src/github.com/docker/engine-api/types/strslice (from $GOPATH)
        /test/src/github.com/docker/engine-api/types/strslice
/test/src/github.com/docker/docker/image/v1/imagev1.go:14:2: cannot find package "github.com/docker/engine-api/types/versions" in any of:
        /usr/src/go/src/github.com/docker/engine-api/types/versions (from $GOROOT)
        /go/src/github.com/docker/engine-api/types/versions (from $GOPATH)
        /test/src/github.com/docker/engine-api/types/versions
/test/src/github.com/docker/docker/runconfig/opts/parse.go:19:2: cannot find package "github.com/docker/go-connections/nat" in any of:
        /usr/src/go/src/github.com/docker/go-connections/nat (from $GOROOT)
        /go/src/github.com/docker/go-connections/nat (from $GOPATH)
        /test/src/github.com/docker/go-connections/nat
/test/src/github.com/docker/docker/cli/flags/common.go:12:2: cannot find package "github.com/docker/go-connections/tlsconfig" in any of:
        /usr/src/go/src/github.com/docker/go-connections/tlsconfig (from $GOROOT)
        /go/src/github.com/docker/go-connections/tlsconfig (from $GOPATH)
        /test/src/github.com/docker/go-connections/tlsconfig
src/github.com/docker/docker/api/client/run.go:20:2: cannot find package "github.com/docker/libnetwork/resolvconf/dns" in any of:
        /usr/src/go/src/github.com/docker/libnetwork/resolvconf/dns (from $GOROOT)
        /go/src/github.com/docker/libnetwork/resolvconf/dns (from $GOPATH)
        /test/src/github.com/docker/libnetwork/resolvconf/dns
src/github.com/docker/docker/api/client/trust.go:33:2: cannot find package "github.com/docker/notary/client" in any of:
        /usr/src/go/src/github.com/docker/notary/client (from $GOROOT)
        /go/src/github.com/docker/notary/client (from $GOPATH)
        /test/src/github.com/docker/notary/client
src/github.com/docker/docker/api/client/trust.go:34:2: cannot find package "github.com/docker/notary/passphrase" in any of:
        /usr/src/go/src/github.com/docker/notary/passphrase (from $GOROOT)
        /go/src/github.com/docker/notary/passphrase (from $GOPATH)
        /test/src/github.com/docker/notary/passphrase
src/github.com/docker/docker/api/client/trust.go:35:2: cannot find package "github.com/docker/notary/trustmanager" in any of:
        /usr/src/go/src/github.com/docker/notary/trustmanager (from $GOROOT)
        /go/src/github.com/docker/notary/trustmanager (from $GOPATH)
        /test/src/github.com/docker/notary/trustmanager
src/github.com/docker/docker/api/client/trust.go:36:2: cannot find package "github.com/docker/notary/trustpinning" in any of:
        /usr/src/go/src/github.com/docker/notary/trustpinning (from $GOROOT)
        /go/src/github.com/docker/notary/trustpinning (from $GOPATH)
        /test/src/github.com/docker/notary/trustpinning
src/github.com/docker/docker/api/client/trust.go:37:2: cannot find package "github.com/docker/notary/tuf/data" in any of:
        /usr/src/go/src/github.com/docker/notary/tuf/data (from $GOROOT)
        /go/src/github.com/docker/notary/tuf/data (from $GOPATH)
        /test/src/github.com/docker/notary/tuf/data
src/github.com/docker/docker/api/client/trust.go:38:2: cannot find package "github.com/docker/notary/tuf/signed" in any of:
        /usr/src/go/src/github.com/docker/notary/tuf/signed (from $GOROOT)
        /go/src/github.com/docker/notary/tuf/signed (from $GOPATH)
        /test/src/github.com/docker/notary/tuf/signed
src/github.com/docker/docker/api/client/trust.go:39:2: cannot find package "github.com/docker/notary/tuf/store" in any of:
        /usr/src/go/src/github.com/docker/notary/tuf/store (from $GOROOT)
        /go/src/github.com/docker/notary/tuf/store (from $GOPATH)
        /test/src/github.com/docker/notary/tuf/store
/test/src/github.com/docker/docker/layer/layer_store.go:16:2: cannot find package "github.com/vbatts/tar-split/tar/asm" in any of:
        /usr/src/go/src/github.com/vbatts/tar-split/tar/asm (from $GOROOT)
        /go/src/github.com/vbatts/tar-split/tar/asm (from $GOPATH)
        /test/src/github.com/vbatts/tar-split/tar/asm
/test/src/github.com/docker/docker/daemon/graphdriver/driver.go:11:2: cannot find package "github.com/vbatts/tar-split/tar/storage" in any of:
        /usr/src/go/src/github.com/vbatts/tar-split/tar/storage (from $GOROOT)
        /go/src/github.com/vbatts/tar-split/tar/storage (from $GOPATH)
        /test/src/github.com/vbatts/tar-split/tar/storage
src/github.com/docker/docker/api/server/profiler.go:9:2: cannot find package "github.com/gorilla/mux" in any of:
        /usr/src/go/src/github.com/gorilla/mux (from $GOROOT)
        /go/src/github.com/gorilla/mux (from $GOPATH)
        /test/src/github.com/gorilla/mux
src/github.com/docker/docker/api/server/router/container/container_routes.go:23:2: cannot find package "golang.org/x/net/websocket" in any of:
        /usr/src/go/src/golang.org/x/net/websocket (from $GOROOT)
        /go/src/golang.org/x/net/websocket (from $GOPATH)
        /test/src/golang.org/x/net/websocket
src/github.com/docker/docker/api/server/router/network/backend.go:7:2: cannot find package "github.com/docker/libnetwork" in any of:
        /usr/src/go/src/github.com/docker/libnetwork (from $GOROOT)
        /go/src/github.com/docker/libnetwork (from $GOPATH)
        /test/src/github.com/docker/libnetwork
src/github.com/docker/docker/api/server/router/system/system_routes.go:17:2: cannot find package "github.com/docker/engine-api/types/time" in any of:
        /usr/src/go/src/github.com/docker/engine-api/types/time (from $GOROOT)
        /go/src/github.com/docker/engine-api/types/time (from $GOPATH)
        /test/src/github.com/docker/engine-api/types/time
/test/src/github.com/docker/docker/daemon/logger/gelf/gelf.go:17:2: cannot find package "github.com/Graylog2/go-gelf/gelf" in any of:
        /usr/src/go/src/github.com/Graylog2/go-gelf/gelf (from $GOROOT)
        /go/src/github.com/Graylog2/go-gelf/gelf (from $GOPATH)
        /test/src/github.com/Graylog2/go-gelf/gelf
/test/src/github.com/docker/docker/daemon/logger/syslog/syslog.go:18:2: cannot find package "github.com/RackSec/srslog" in any of:
        /usr/src/go/src/github.com/RackSec/srslog (from $GOROOT)
        /go/src/github.com/RackSec/srslog (from $GOPATH)
        /test/src/github.com/RackSec/srslog
/test/src/github.com/docker/docker/daemon/logger/awslogs/cloudwatchlogs.go:15:2: cannot find package "github.com/aws/aws-sdk-go/aws" in any of:
        /usr/src/go/src/github.com/aws/aws-sdk-go/aws (from $GOROOT)
        /go/src/github.com/aws/aws-sdk-go/aws (from $GOPATH)
        /test/src/github.com/aws/aws-sdk-go/aws
/test/src/github.com/docker/docker/daemon/logger/awslogs/cloudwatchlogs.go:16:2: cannot find package "github.com/aws/aws-sdk-go/aws/awserr" in any of:
        /usr/src/go/src/github.com/aws/aws-sdk-go/aws/awserr (from $GOROOT)
        /go/src/github.com/aws/aws-sdk-go/aws/awserr (from $GOPATH)
        /test/src/github.com/aws/aws-sdk-go/aws/awserr
/test/src/github.com/docker/docker/daemon/logger/awslogs/cloudwatchlogs.go:17:2: cannot find package "github.com/aws/aws-sdk-go/aws/defaults" in any of:
        /usr/src/go/src/github.com/aws/aws-sdk-go/aws/defaults (from $GOROOT)
        /go/src/github.com/aws/aws-sdk-go/aws/defaults (from $GOPATH)
        /test/src/github.com/aws/aws-sdk-go/aws/defaults
/test/src/github.com/docker/docker/daemon/logger/awslogs/cloudwatchlogs.go:18:2: cannot find package "github.com/aws/aws-sdk-go/aws/ec2metadata" in any of:
        /usr/src/go/src/github.com/aws/aws-sdk-go/aws/ec2metadata (from $GOROOT)
        /go/src/github.com/aws/aws-sdk-go/aws/ec2metadata (from $GOPATH)
        /test/src/github.com/aws/aws-sdk-go/aws/ec2metadata
/test/src/github.com/docker/docker/daemon/logger/awslogs/cloudwatchlogs.go:19:2: cannot find package "github.com/aws/aws-sdk-go/aws/request" in any of:
        /usr/src/go/src/github.com/aws/aws-sdk-go/aws/request (from $GOROOT)
        /go/src/github.com/aws/aws-sdk-go/aws/request (from $GOPATH)
        /test/src/github.com/aws/aws-sdk-go/aws/request
/test/src/github.com/docker/docker/daemon/logger/awslogs/cloudwatchlogs.go:20:2: cannot find package "github.com/aws/aws-sdk-go/service/cloudwatchlogs" in any of:
        /usr/src/go/src/github.com/aws/aws-sdk-go/service/cloudwatchlogs (from $GOROOT)
        /go/src/github.com/aws/aws-sdk-go/service/cloudwatchlogs (from $GOPATH)
        /test/src/github.com/aws/aws-sdk-go/service/cloudwatchlogs
/test/src/github.com/docker/docker/volume/store/store.go:12:2: cannot find package "github.com/boltdb/bolt" in any of:
        /usr/src/go/src/github.com/boltdb/bolt (from $GOROOT)
        /go/src/github.com/boltdb/bolt (from $GOPATH)
        /test/src/github.com/boltdb/bolt
src/github.com/docker/docker/cmd/dockerd/daemon.go:14:2: cannot find package "github.com/docker/distribution/uuid" in any of:
        /usr/src/go/src/github.com/docker/distribution/uuid (from $GOROOT)
        /go/src/github.com/docker/distribution/uuid (from $GOPATH)
        /test/src/github.com/docker/distribution/uuid
/test/src/github.com/docker/docker/daemon/inspect_unix.go:10:2: cannot find package "github.com/docker/engine-api/types/versions/v1p19" in any of:
        /usr/src/go/src/github.com/docker/engine-api/types/versions/v1p19 (from $GOROOT)
        /go/src/github.com/docker/engine-api/types/versions/v1p19 (from $GOPATH)
        /test/src/github.com/docker/engine-api/types/versions/v1p19
/test/src/github.com/docker/docker/daemon/inspect.go:13:2: cannot find package "github.com/docker/engine-api/types/versions/v1p20" in any of:
        /usr/src/go/src/github.com/docker/engine-api/types/versions/v1p20 (from $GOROOT)
        /go/src/github.com/docker/engine-api/types/versions/v1p20 (from $GOPATH)
        /test/src/github.com/docker/engine-api/types/versions/v1p20
/test/src/github.com/docker/docker/pkg/discovery/kv/kv.go:12:2: cannot find package "github.com/docker/libkv" in any of:
        /usr/src/go/src/github.com/docker/libkv (from $GOROOT)
        /go/src/github.com/docker/libkv (from $GOPATH)
        /test/src/github.com/docker/libkv
/test/src/github.com/docker/docker/pkg/discovery/kv/kv.go:13:2: cannot find package "github.com/docker/libkv/store" in any of:
        /usr/src/go/src/github.com/docker/libkv/store (from $GOROOT)
        /go/src/github.com/docker/libkv/store (from $GOPATH)
        /test/src/github.com/docker/libkv/store
/test/src/github.com/docker/docker/pkg/discovery/kv/kv.go:14:2: cannot find package "github.com/docker/libkv/store/consul" in any of:
        /usr/src/go/src/github.com/docker/libkv/store/consul (from $GOROOT)
        /go/src/github.com/docker/libkv/store/consul (from $GOPATH)
        /test/src/github.com/docker/libkv/store/consul
/test/src/github.com/docker/docker/pkg/discovery/kv/kv.go:15:2: cannot find package "github.com/docker/libkv/store/etcd" in any of:
        /usr/src/go/src/github.com/docker/libkv/store/etcd (from $GOROOT)
        /go/src/github.com/docker/libkv/store/etcd (from $GOPATH)
        /test/src/github.com/docker/libkv/store/etcd
/test/src/github.com/docker/docker/pkg/discovery/kv/kv.go:16:2: cannot find package "github.com/docker/libkv/store/zookeeper" in any of:
        /usr/src/go/src/github.com/docker/libkv/store/zookeeper (from $GOROOT)
        /go/src/github.com/docker/libkv/store/zookeeper (from $GOPATH)
        /test/src/github.com/docker/libkv/store/zookeeper
/test/src/github.com/docker/docker/daemon/daemon.go:71:2: cannot find package "github.com/docker/libnetwork/config" in any of:
        /usr/src/go/src/github.com/docker/libnetwork/config (from $GOROOT)
        /go/src/github.com/docker/libnetwork/config (from $GOPATH)
        /test/src/github.com/docker/libnetwork/config
/test/src/github.com/docker/docker/daemon/daemon_unix.go:35:2: cannot find package "github.com/docker/libnetwork/drivers/bridge" in any of:
        /usr/src/go/src/github.com/docker/libnetwork/drivers/bridge (from $GOROOT)
        /go/src/github.com/docker/libnetwork/drivers/bridge (from $GOPATH)
        /test/src/github.com/docker/libnetwork/drivers/bridge
/test/src/github.com/docker/docker/container/container.go:38:2: cannot find package "github.com/docker/libnetwork/netlabel" in any of:
        /usr/src/go/src/github.com/docker/libnetwork/netlabel (from $GOROOT)
        /go/src/github.com/docker/libnetwork/netlabel (from $GOPATH)
        /test/src/github.com/docker/libnetwork/netlabel
/test/src/github.com/docker/docker/daemon/daemon_unix.go:37:2: cannot find package "github.com/docker/libnetwork/netutils" in any of:
        /usr/src/go/src/github.com/docker/libnetwork/netutils (from $GOROOT)
        /go/src/github.com/docker/libnetwork/netutils (from $GOPATH)
        /test/src/github.com/docker/libnetwork/netutils
/test/src/github.com/docker/docker/container/container.go:39:2: cannot find package "github.com/docker/libnetwork/options" in any of:
        /usr/src/go/src/github.com/docker/libnetwork/options (from $GOROOT)
        /go/src/github.com/docker/libnetwork/options (from $GOPATH)
        /test/src/github.com/docker/libnetwork/options
src/github.com/docker/docker/cmd/dockerd/daemon_unix.go:18:2: cannot find package "github.com/docker/libnetwork/portallocator" in any of:
        /usr/src/go/src/github.com/docker/libnetwork/portallocator (from $GOROOT)
        /go/src/github.com/docker/libnetwork/portallocator (from $GOPATH)
        /test/src/github.com/docker/libnetwork/portallocator
/test/src/github.com/docker/docker/container/container.go:40:2: cannot find package "github.com/docker/libnetwork/types" in any of:
        /usr/src/go/src/github.com/docker/libnetwork/types (from $GOROOT)
        /go/src/github.com/docker/libnetwork/types (from $GOPATH)
        /test/src/github.com/docker/libnetwork/types
/test/src/github.com/docker/docker/daemon/logger/fluentd/fluentd.go:17:2: cannot find package "github.com/fluent/fluent-logger-golang/fluent" in any of:
        /usr/src/go/src/github.com/fluent/fluent-logger-golang/fluent (from $GOROOT)
        /go/src/github.com/fluent/fluent-logger-golang/fluent (from $GOPATH)
        /test/src/github.com/fluent/fluent-logger-golang/fluent
/test/src/github.com/docker/docker/daemon/config.go:17:2: cannot find package "github.com/imdario/mergo" in any of:
        /usr/src/go/src/github.com/imdario/mergo (from $GOROOT)
        /go/src/github.com/imdario/mergo (from $GOPATH)
        /test/src/github.com/imdario/mergo
/test/src/github.com/docker/docker/pkg/parsers/operatingsystem/operatingsystem_linux.go:13:2: cannot find package "github.com/mattn/go-shellwords" in any of:
        /usr/src/go/src/github.com/mattn/go-shellwords (from $GOROOT)
        /go/src/github.com/mattn/go-shellwords (from $GOPATH)
        /test/src/github.com/mattn/go-shellwords
/test/src/github.com/docker/docker/pkg/graphdb/conn_sqlite3_unix.go:6:2: cannot find package "github.com/mattn/go-sqlite3" in any of:
        /usr/src/go/src/github.com/mattn/go-sqlite3 (from $GOROOT)
        /go/src/github.com/mattn/go-sqlite3 (from $GOPATH)
        /test/src/github.com/mattn/go-sqlite3
/test/src/github.com/docker/docker/daemon/graphdriver/zfs/zfs.go:21:2: cannot find package "github.com/mistifyio/go-zfs" in any of:
        /usr/src/go/src/github.com/mistifyio/go-zfs (from $GOROOT)
        /go/src/github.com/mistifyio/go-zfs (from $GOPATH)
        /test/src/github.com/mistifyio/go-zfs
/test/src/github.com/docker/docker/daemon/container_operations_unix.go:26:2: cannot find package "github.com/opencontainers/runc/libcontainer/devices" in any of:
        /usr/src/go/src/github.com/opencontainers/runc/libcontainer/devices (from $GOROOT)
        /go/src/github.com/opencontainers/runc/libcontainer/devices (from $GOPATH)
        /test/src/github.com/opencontainers/runc/libcontainer/devices
/test/src/github.com/docker/docker/libcontainerd/client_linux.go:16:2: cannot find package "github.com/opencontainers/specs/specs-go" in any of:
        /usr/src/go/src/github.com/opencontainers/specs/specs-go (from $GOROOT)
        /go/src/github.com/opencontainers/specs/specs-go (from $GOPATH)
        /test/src/github.com/opencontainers/specs/specs-go
/test/src/github.com/docker/docker/pkg/truncindex/truncindex.go:12:2: cannot find package "github.com/tchap/go-patricia/patricia" in any of:
        /usr/src/go/src/github.com/tchap/go-patricia/patricia (from $GOROOT)
        /go/src/github.com/tchap/go-patricia/patricia (from $GOPATH)
        /test/src/github.com/tchap/go-patricia/patricia
/test/src/github.com/docker/docker/daemon/logger/gcplogs/gcplogging.go:13:2: cannot find package "google.golang.org/cloud/compute/metadata" in any of:
        /usr/src/go/src/google.golang.org/cloud/compute/metadata (from $GOROOT)
        /go/src/google.golang.org/cloud/compute/metadata (from $GOPATH)
        /test/src/google.golang.org/cloud/compute/metadata
/test/src/github.com/docker/docker/daemon/logger/gcplogs/gcplogging.go:14:2: cannot find package "google.golang.org/cloud/logging" in any of:
        /usr/src/go/src/google.golang.org/cloud/logging (from $GOROOT)
        /go/src/google.golang.org/cloud/logging (from $GOPATH)
        /test/src/google.golang.org/cloud/logging
/test/src/github.com/docker/docker/libcontainerd/remote_linux.go:26:2: cannot find package "google.golang.org/grpc/transport" in any of:
        /usr/src/go/src/google.golang.org/grpc/transport (from $GOROOT)
        /go/src/google.golang.org/grpc/transport (from $GOPATH)
        /test/src/google.golang.org/grpc/transport
/test/src/github.com/docker/docker/pkg/filenotify/filenotify.go:6:8: cannot find package "gopkg.in/fsnotify.v1" in any of:
        /usr/src/go/src/gopkg.in/fsnotify.v1 (from $GOROOT)
        /go/src/gopkg.in/fsnotify.v1 (from $GOPATH)
        /test/src/gopkg.in/fsnotify.v1
can't load package: package github.com/docker/libcontainer/src/github.com/docker/docker/daemon/graphdriver/windows: no buildable Go source files in /go/src/github.com/docker/libcontainer/src/github.com/docker/docker/daemon/graphdriver/windows
can't load package: package github.com/docker/libcontainer/src/github.com/docker/docker/daemon/logger/etwlogs: no buildable Go source files in /go/src/github.com/docker/libcontainer/src/github.com/docker/docker/daemon/logger/etwlogs
can't load package: package github.com/docker/libcontainer/src/github.com/docker/docker/vendor/src/github.com/Azure/go-ansiterm/winterm: no buildable Go source files in /go/src/github.com/docker/libcontainer/src/github.com/docker/docker/vendor/src/github.com/Azure/go-ansiterm/winterm
src/github.com/docker/docker/vendor/src/github.com/Microsoft/go-winio/privilege.go:12:2: cannot find package "golang.org/x/sys/windows" in any of:
        /usr/src/go/src/golang.org/x/sys/windows (from $GOROOT)
        /go/src/golang.org/x/sys/windows (from $GOPATH)
        /test/src/golang.org/x/sys/windows
src/github.com/docker/docker/vendor/src/github.com/Microsoft/go-winio/backuptar/tar.go:15:2: cannot find package "github.com/Microsoft/go-winio" in any of:
        /usr/src/go/src/github.com/Microsoft/go-winio (from $GOROOT)
        /go/src/github.com/Microsoft/go-winio (from $GOPATH)
        /test/src/github.com/Microsoft/go-winio
src/github.com/docker/docker/vendor/src/github.com/Microsoft/go-winio/backuptar/tar.go:16:2: cannot find package "github.com/Microsoft/go-winio/archive/tar" in any of:
        /usr/src/go/src/github.com/Microsoft/go-winio/archive/tar (from $GOROOT)
        /go/src/github.com/Microsoft/go-winio/archive/tar (from $GOPATH)
        /test/src/github.com/Microsoft/go-winio/archive/tar
src/github.com/docker/docker/vendor/src/github.com/agl/ed25519/ed25519.go:17:2: cannot find package "github.com/agl/ed25519/edwards25519" in any of:
        /usr/src/go/src/github.com/agl/ed25519/edwards25519 (from $GOROOT)
        /go/src/github.com/agl/ed25519/edwards25519 (from $GOPATH)
        /test/src/github.com/agl/ed25519/edwards25519
src/github.com/docker/docker/vendor/src/github.com/aws/aws-sdk-go/aws/config.go:7:2: cannot find package "github.com/aws/aws-sdk-go/aws/credentials" in any of:
        /usr/src/go/src/github.com/aws/aws-sdk-go/aws/credentials (from $GOROOT)
        /go/src/github.com/aws/aws-sdk-go/aws/credentials (from $GOPATH)
        /test/src/github.com/aws/aws-sdk-go/aws/credentials
src/github.com/docker/docker/vendor/src/github.com/aws/aws-sdk-go/aws/credentials/shared_credentials_provider.go:8:2: cannot find package "github.com/vaughan0/go-ini" in any of:
        /usr/src/go/src/github.com/vaughan0/go-ini (from $GOROOT)
        /go/src/github.com/vaughan0/go-ini (from $GOPATH)
        /test/src/github.com/vaughan0/go-ini
src/github.com/docker/docker/vendor/src/github.com/aws/aws-sdk-go/aws/defaults/defaults.go:10:2: cannot find package "github.com/aws/aws-sdk-go/aws/credentials/ec2rolecreds" in any of:
        /usr/src/go/src/github.com/aws/aws-sdk-go/aws/credentials/ec2rolecreds (from $GOROOT)
        /go/src/github.com/aws/aws-sdk-go/aws/credentials/ec2rolecreds (from $GOPATH)
        /test/src/github.com/aws/aws-sdk-go/aws/credentials/ec2rolecreds
src/github.com/docker/docker/vendor/src/github.com/aws/aws-sdk-go/aws/ec2metadata/service.go:11:2: cannot find package "github.com/aws/aws-sdk-go/aws/service" in any of:
        /usr/src/go/src/github.com/aws/aws-sdk-go/aws/service (from $GOROOT)
        /go/src/github.com/aws/aws-sdk-go/aws/service (from $GOPATH)
        /test/src/github.com/aws/aws-sdk-go/aws/service
src/github.com/docker/docker/vendor/src/github.com/aws/aws-sdk-go/aws/ec2metadata/service.go:12:2: cannot find package "github.com/aws/aws-sdk-go/aws/service/serviceinfo" in any of:
        /usr/src/go/src/github.com/aws/aws-sdk-go/aws/service/serviceinfo (from $GOROOT)
        /go/src/github.com/aws/aws-sdk-go/aws/service/serviceinfo (from $GOPATH)
        /test/src/github.com/aws/aws-sdk-go/aws/service/serviceinfo
src/github.com/docker/docker/vendor/src/github.com/aws/aws-sdk-go/aws/request/request.go:15:2: cannot find package "github.com/aws/aws-sdk-go/aws/awsutil" in any of:
        /usr/src/go/src/github.com/aws/aws-sdk-go/aws/awsutil (from $GOROOT)
        /go/src/github.com/aws/aws-sdk-go/aws/awsutil (from $GOPATH)
        /test/src/github.com/aws/aws-sdk-go/aws/awsutil
src/github.com/docker/docker/vendor/src/github.com/aws/aws-sdk-go/aws/service/service.go:12:2: cannot find package "github.com/aws/aws-sdk-go/aws/corehandlers" in any of:
        /usr/src/go/src/github.com/aws/aws-sdk-go/aws/corehandlers (from $GOROOT)
        /go/src/github.com/aws/aws-sdk-go/aws/corehandlers (from $GOPATH)
        /test/src/github.com/aws/aws-sdk-go/aws/corehandlers
src/github.com/docker/docker/vendor/src/github.com/aws/aws-sdk-go/aws/service/service.go:15:2: cannot find package "github.com/aws/aws-sdk-go/internal/endpoints" in any of:
        /usr/src/go/src/github.com/aws/aws-sdk-go/internal/endpoints (from $GOROOT)
        /go/src/github.com/aws/aws-sdk-go/internal/endpoints (from $GOPATH)
        /test/src/github.com/aws/aws-sdk-go/internal/endpoints
src/github.com/docker/docker/vendor/src/github.com/aws/aws-sdk-go/internal/protocol/jsonrpc/jsonrpc.go:15:2: cannot find package "github.com/aws/aws-sdk-go/internal/protocol/json/jsonutil" in any of:
        /usr/src/go/src/github.com/aws/aws-sdk-go/internal/protocol/json/jsonutil (from $GOROOT)
        /go/src/github.com/aws/aws-sdk-go/internal/protocol/json/jsonutil (from $GOPATH)
        /test/src/github.com/aws/aws-sdk-go/internal/protocol/json/jsonutil
src/github.com/docker/docker/vendor/src/github.com/aws/aws-sdk-go/internal/protocol/jsonrpc/jsonrpc.go:16:2: cannot find package "github.com/aws/aws-sdk-go/internal/protocol/rest" in any of:
        /usr/src/go/src/github.com/aws/aws-sdk-go/internal/protocol/rest (from $GOROOT)
        /go/src/github.com/aws/aws-sdk-go/internal/protocol/rest (from $GOPATH)
        /test/src/github.com/aws/aws-sdk-go/internal/protocol/rest
src/github.com/docker/docker/vendor/src/github.com/aws/aws-sdk-go/service/cloudwatchlogs/service.go:11:2: cannot find package "github.com/aws/aws-sdk-go/internal/protocol/jsonrpc" in any of:
        /usr/src/go/src/github.com/aws/aws-sdk-go/internal/protocol/jsonrpc (from $GOROOT)
        /go/src/github.com/aws/aws-sdk-go/internal/protocol/jsonrpc (from $GOPATH)
        /test/src/github.com/aws/aws-sdk-go/internal/protocol/jsonrpc
src/github.com/docker/docker/vendor/src/github.com/aws/aws-sdk-go/service/cloudwatchlogs/service.go:12:2: cannot find package "github.com/aws/aws-sdk-go/internal/signer/v4" in any of:
        /usr/src/go/src/github.com/aws/aws-sdk-go/internal/signer/v4 (from $GOROOT)
        /go/src/github.com/aws/aws-sdk-go/internal/signer/v4 (from $GOPATH)
        /test/src/github.com/aws/aws-sdk-go/internal/signer/v4
src/github.com/docker/docker/vendor/src/github.com/coreos/etcd/client/keys.go:31:2: cannot find package "github.com/coreos/etcd/pkg/pathutil" in any of:
        /usr/src/go/src/github.com/coreos/etcd/pkg/pathutil (from $GOROOT)
        /go/src/github.com/coreos/etcd/pkg/pathutil (from $GOPATH)
        /test/src/github.com/coreos/etcd/pkg/pathutil
src/github.com/docker/docker/vendor/src/github.com/coreos/etcd/client/members.go:27:2: cannot find package "github.com/coreos/etcd/pkg/types" in any of:
        /usr/src/go/src/github.com/coreos/etcd/pkg/types (from $GOROOT)
        /go/src/github.com/coreos/etcd/pkg/types (from $GOPATH)
        /test/src/github.com/coreos/etcd/pkg/types
src/github.com/docker/docker/vendor/src/github.com/coreos/etcd/client/keys.generated.go:11:2: cannot find package "github.com/ugorji/go/codec" in any of:
        /usr/src/go/src/github.com/ugorji/go/codec (from $GOROOT)
        /go/src/github.com/ugorji/go/codec (from $GOPATH)
        /test/src/github.com/ugorji/go/codec
src/github.com/docker/docker/vendor/src/github.com/docker/distribution/blobs.go:10:2: cannot find package "github.com/docker/distribution/context" in any of:
        /usr/src/go/src/github.com/docker/distribution/context (from $GOROOT)
        /go/src/github.com/docker/distribution/context (from $GOPATH)
        /test/src/github.com/docker/distribution/context
src/github.com/docker/docker/vendor/src/github.com/docker/distribution/manifest/manifestlist/manifestlist.go:10:2: cannot find package "github.com/docker/distribution/manifest" in any of:
        /usr/src/go/src/github.com/docker/distribution/manifest (from $GOROOT)
        /go/src/github.com/docker/distribution/manifest (from $GOPATH)
        /test/src/github.com/docker/distribution/manifest
src/github.com/docker/docker/vendor/src/github.com/docker/distribution/registry/client/repository.go:21:2: cannot find package "github.com/docker/distribution/registry/storage/cache" in any of:
        /usr/src/go/src/github.com/docker/distribution/registry/storage/cache (from $GOROOT)
        /go/src/github.com/docker/distribution/registry/storage/cache (from $GOPATH)
        /test/src/github.com/docker/distribution/registry/storage/cache
src/github.com/docker/docker/vendor/src/github.com/docker/distribution/registry/client/repository.go:22:2: cannot find package "github.com/docker/distribution/registry/storage/cache/memory" in any of:
        /usr/src/go/src/github.com/docker/distribution/registry/storage/cache/memory (from $GOROOT)
        /go/src/github.com/docker/distribution/registry/storage/cache/memory (from $GOPATH)
        /test/src/github.com/docker/distribution/registry/storage/cache/memory
src/github.com/docker/docker/vendor/src/github.com/docker/engine-api/client/client.go:11:2: cannot find package "github.com/docker/engine-api/client/transport" in any of:
        /usr/src/go/src/github.com/docker/engine-api/client/transport (from $GOROOT)
        /go/src/github.com/docker/engine-api/client/transport (from $GOPATH)
        /test/src/github.com/docker/engine-api/client/transport
src/github.com/docker/docker/vendor/src/github.com/docker/engine-api/client/request.go:13:2: cannot find package "github.com/docker/engine-api/client/transport/cancellable" in any of:
        /usr/src/go/src/github.com/docker/engine-api/client/transport/cancellable (from $GOROOT)
        /go/src/github.com/docker/engine-api/client/transport/cancellable (from $GOPATH)
        /test/src/github.com/docker/engine-api/client/transport/cancellable
src/github.com/docker/docker/vendor/src/github.com/docker/engine-api/client/container_commit.go:10:2: cannot find package "github.com/docker/engine-api/types/reference" in any of:
        /usr/src/go/src/github.com/docker/engine-api/types/reference (from $GOROOT)
        /go/src/github.com/docker/engine-api/types/reference (from $GOPATH)
        /test/src/github.com/docker/engine-api/types/reference
src/github.com/docker/docker/vendor/src/github.com/docker/libkv/store/consul/consul.go:13:2: cannot find package "github.com/hashicorp/consul/api" in any of:
        /usr/src/go/src/github.com/hashicorp/consul/api (from $GOROOT)
        /go/src/github.com/hashicorp/consul/api (from $GOPATH)
        /test/src/github.com/hashicorp/consul/api
src/github.com/docker/docker/vendor/src/github.com/docker/libkv/store/etcd/etcd.go:14:2: cannot find package "github.com/coreos/etcd/client" in any of:
        /usr/src/go/src/github.com/coreos/etcd/client (from $GOROOT)
        /go/src/github.com/coreos/etcd/client (from $GOPATH)
        /test/src/github.com/coreos/etcd/client
src/github.com/docker/docker/vendor/src/github.com/docker/libkv/store/zookeeper/zookeeper.go:9:2: cannot find package "github.com/samuel/go-zookeeper/zk" in any of:
        /usr/src/go/src/github.com/samuel/go-zookeeper/zk (from $GOROOT)
        /go/src/github.com/samuel/go-zookeeper/zk (from $GOPATH)
        /test/src/github.com/samuel/go-zookeeper/zk
src/github.com/docker/docker/vendor/src/github.com/docker/libnetwork/agent.go:10:2: cannot find package "github.com/docker/go-events" in any of:
        /usr/src/go/src/github.com/docker/go-events (from $GOROOT)
        /go/src/github.com/docker/go-events (from $GOPATH)
        /test/src/github.com/docker/go-events
src/github.com/docker/docker/vendor/src/github.com/docker/libnetwork/store.go:7:2: cannot find package "github.com/docker/libkv/store/boltdb" in any of:
        /usr/src/go/src/github.com/docker/libkv/store/boltdb (from $GOROOT)
        /go/src/github.com/docker/libkv/store/boltdb (from $GOPATH)
        /test/src/github.com/docker/libkv/store/boltdb
src/github.com/docker/docker/vendor/src/github.com/docker/libnetwork/agent.go:11:2: cannot find package "github.com/docker/libnetwork/datastore" in any of:
        /usr/src/go/src/github.com/docker/libnetwork/datastore (from $GOROOT)
        /go/src/github.com/docker/libnetwork/datastore (from $GOPATH)
        /test/src/github.com/docker/libnetwork/datastore
src/github.com/docker/docker/vendor/src/github.com/docker/libnetwork/agent.go:12:2: cannot find package "github.com/docker/libnetwork/discoverapi" in any of:
        /usr/src/go/src/github.com/docker/libnetwork/discoverapi (from $GOROOT)
        /go/src/github.com/docker/libnetwork/discoverapi (from $GOPATH)
        /test/src/github.com/docker/libnetwork/discoverapi
src/github.com/docker/docker/vendor/src/github.com/docker/libnetwork/agent.go:13:2: cannot find package "github.com/docker/libnetwork/driverapi" in any of:
        /usr/src/go/src/github.com/docker/libnetwork/driverapi (from $GOROOT)
        /go/src/github.com/docker/libnetwork/driverapi (from $GOPATH)
        /test/src/github.com/docker/libnetwork/driverapi
src/github.com/docker/docker/vendor/src/github.com/docker/libnetwork/drivers_linux.go:5:2: cannot find package "github.com/docker/libnetwork/drivers/host" in any of:
        /usr/src/go/src/github.com/docker/libnetwork/drivers/host (from $GOROOT)
        /go/src/github.com/docker/libnetwork/drivers/host (from $GOPATH)
        /test/src/github.com/docker/libnetwork/drivers/host
src/github.com/docker/docker/vendor/src/github.com/docker/libnetwork/drivers_linux.go:6:2: cannot find package "github.com/docker/libnetwork/drivers/null" in any of:
        /usr/src/go/src/github.com/docker/libnetwork/drivers/null (from $GOROOT)
        /go/src/github.com/docker/libnetwork/drivers/null (from $GOPATH)
        /test/src/github.com/docker/libnetwork/drivers/null
src/github.com/docker/docker/vendor/src/github.com/docker/libnetwork/drivers_linux.go:7:2: cannot find package "github.com/docker/libnetwork/drivers/overlay" in any of:
        /usr/src/go/src/github.com/docker/libnetwork/drivers/overlay (from $GOROOT)
        /go/src/github.com/docker/libnetwork/drivers/overlay (from $GOPATH)
        /test/src/github.com/docker/libnetwork/drivers/overlay
src/github.com/docker/docker/vendor/src/github.com/docker/libnetwork/drivers_linux.go:8:2: cannot find package "github.com/docker/libnetwork/drivers/remote" in any of:
        /usr/src/go/src/github.com/docker/libnetwork/drivers/remote (from $GOROOT)
        /go/src/github.com/docker/libnetwork/drivers/remote (from $GOPATH)
        /test/src/github.com/docker/libnetwork/drivers/remote
src/github.com/docker/docker/vendor/src/github.com/docker/libnetwork/controller.go:61:2: cannot find package "github.com/docker/libnetwork/drvregistry" in any of:
        /usr/src/go/src/github.com/docker/libnetwork/drvregistry (from $GOROOT)
        /go/src/github.com/docker/libnetwork/drvregistry (from $GOPATH)
        /test/src/github.com/docker/libnetwork/drvregistry
src/github.com/docker/docker/vendor/src/github.com/docker/libnetwork/network.go:15:2: cannot find package "github.com/docker/libnetwork/etchosts" in any of:
        /usr/src/go/src/github.com/docker/libnetwork/etchosts (from $GOROOT)
        /go/src/github.com/docker/libnetwork/etchosts (from $GOPATH)
        /test/src/github.com/docker/libnetwork/etchosts
src/github.com/docker/docker/vendor/src/github.com/docker/libnetwork/controller.go:62:2: cannot find package "github.com/docker/libnetwork/hostdiscovery" in any of:
        /usr/src/go/src/github.com/docker/libnetwork/hostdiscovery (from $GOROOT)
        /go/src/github.com/docker/libnetwork/hostdiscovery (from $GOPATH)
        /test/src/github.com/docker/libnetwork/hostdiscovery
src/github.com/docker/docker/vendor/src/github.com/docker/libnetwork/controller.go:63:2: cannot find package "github.com/docker/libnetwork/ipamapi" in any of:
        /usr/src/go/src/github.com/docker/libnetwork/ipamapi (from $GOROOT)
        /go/src/github.com/docker/libnetwork/ipamapi (from $GOPATH)
        /test/src/github.com/docker/libnetwork/ipamapi
src/github.com/docker/docker/vendor/src/github.com/docker/libnetwork/resolver_unix.go:14:2: cannot find package "github.com/docker/libnetwork/iptables" in any of:
        /usr/src/go/src/github.com/docker/libnetwork/iptables (from $GOROOT)
        /go/src/github.com/docker/libnetwork/iptables (from $GOPATH)
        /test/src/github.com/docker/libnetwork/iptables
src/github.com/docker/docker/vendor/src/github.com/docker/libnetwork/agent.go:14:2: cannot find package "github.com/docker/libnetwork/networkdb" in any of:
        /usr/src/go/src/github.com/docker/libnetwork/networkdb (from $GOROOT)
        /go/src/github.com/docker/libnetwork/networkdb (from $GOPATH)
        /test/src/github.com/docker/libnetwork/networkdb
src/github.com/docker/docker/vendor/src/github.com/docker/libnetwork/controller.go:65:2: cannot find package "github.com/docker/libnetwork/osl" in any of:
        /usr/src/go/src/github.com/docker/libnetwork/osl (from $GOROOT)
        /go/src/github.com/docker/libnetwork/osl (from $GOPATH)
        /test/src/github.com/docker/libnetwork/osl
src/github.com/docker/docker/vendor/src/github.com/docker/libnetwork/sandbox_dns_unix.go:14:2: cannot find package "github.com/docker/libnetwork/resolvconf" in any of:
        /usr/src/go/src/github.com/docker/libnetwork/resolvconf (from $GOROOT)
        /go/src/github.com/docker/libnetwork/resolvconf (from $GOPATH)
        /test/src/github.com/docker/libnetwork/resolvconf
src/github.com/docker/docker/vendor/src/github.com/docker/libnetwork/resolver.go:13:2: cannot find package "github.com/miekg/dns" in any of:
        /usr/src/go/src/github.com/miekg/dns (from $GOROOT)
        /go/src/github.com/miekg/dns (from $GOPATH)
        /test/src/github.com/miekg/dns
src/github.com/docker/docker/vendor/src/github.com/docker/libnetwork/resolver_unix.go:15:2: cannot find package "github.com/vishvananda/netns" in any of:
        /usr/src/go/src/github.com/vishvananda/netns (from $GOROOT)
        /go/src/github.com/vishvananda/netns (from $GOPATH)
        /test/src/github.com/vishvananda/netns
src/github.com/docker/docker/vendor/src/github.com/docker/libnetwork/config/config.go:6:2: cannot find package "github.com/BurntSushi/toml" in any of:
        /usr/src/go/src/github.com/BurntSushi/toml (from $GOROOT)
        /go/src/github.com/BurntSushi/toml (from $GOPATH)
        /test/src/github.com/BurntSushi/toml
src/github.com/docker/docker/vendor/src/github.com/docker/libnetwork/drivers/bridge/bridge.go:24:2: cannot find package "github.com/docker/libnetwork/portmapper" in any of:
        /usr/src/go/src/github.com/docker/libnetwork/portmapper (from $GOROOT)
        /go/src/github.com/docker/libnetwork/portmapper (from $GOPATH)
        /test/src/github.com/docker/libnetwork/portmapper
src/github.com/docker/docker/vendor/src/github.com/docker/libnetwork/drivers/overlay/overlay.go:12:2: cannot find package "github.com/docker/libnetwork/idm" in any of:
        /usr/src/go/src/github.com/docker/libnetwork/idm (from $GOROOT)
        /go/src/github.com/docker/libnetwork/idm (from $GOPATH)
        /test/src/github.com/docker/libnetwork/idm
src/github.com/docker/docker/vendor/src/github.com/docker/libnetwork/drivers/overlay/ov_serf.go:10:2: cannot find package "github.com/hashicorp/serf/serf" in any of:
        /usr/src/go/src/github.com/hashicorp/serf/serf (from $GOROOT)
        /go/src/github.com/hashicorp/serf/serf (from $GOPATH)
        /test/src/github.com/hashicorp/serf/serf
src/github.com/docker/docker/vendor/src/github.com/docker/libnetwork/drivers/remote/driver.go:12:2: cannot find package "github.com/docker/libnetwork/drivers/remote/api" in any of:
        /usr/src/go/src/github.com/docker/libnetwork/drivers/remote/api (from $GOROOT)
        /go/src/github.com/docker/libnetwork/drivers/remote/api (from $GOPATH)
        /test/src/github.com/docker/libnetwork/drivers/remote/api
src/github.com/docker/docker/vendor/src/github.com/docker/libnetwork/drvregistry/drvregistry.go:12:2: cannot find package "github.com/docker/libnetwork/ipams/builtin" in any of:
        /usr/src/go/src/github.com/docker/libnetwork/ipams/builtin (from $GOROOT)
        /go/src/github.com/docker/libnetwork/ipams/builtin (from $GOPATH)
        /test/src/github.com/docker/libnetwork/ipams/builtin
src/github.com/docker/docker/vendor/src/github.com/docker/libnetwork/drvregistry/drvregistry.go:13:2: cannot find package "github.com/docker/libnetwork/ipams/null" in any of:
        /usr/src/go/src/github.com/docker/libnetwork/ipams/null (from $GOROOT)
        /go/src/github.com/docker/libnetwork/ipams/null (from $GOPATH)
        /test/src/github.com/docker/libnetwork/ipams/null
src/github.com/docker/docker/vendor/src/github.com/docker/libnetwork/drvregistry/drvregistry.go:14:2: cannot find package "github.com/docker/libnetwork/ipams/remote" in any of:
        /usr/src/go/src/github.com/docker/libnetwork/ipams/remote (from $GOROOT)
        /go/src/github.com/docker/libnetwork/ipams/remote (from $GOPATH)
        /test/src/github.com/docker/libnetwork/ipams/remote
src/github.com/docker/docker/vendor/src/github.com/docker/libnetwork/hostdiscovery/hostdiscovery.go:9:2: cannot find package "github.com/deckarep/golang-set" in any of:
        /usr/src/go/src/github.com/deckarep/golang-set (from $GOROOT)
        /go/src/github.com/deckarep/golang-set (from $GOPATH)
        /test/src/github.com/deckarep/golang-set
src/github.com/docker/docker/vendor/src/github.com/docker/libnetwork/idm/idm.go:7:2: cannot find package "github.com/docker/libnetwork/bitseq" in any of:
        /usr/src/go/src/github.com/docker/libnetwork/bitseq (from $GOROOT)
        /go/src/github.com/docker/libnetwork/bitseq (from $GOPATH)
        /test/src/github.com/docker/libnetwork/bitseq
src/github.com/docker/docker/vendor/src/github.com/docker/libnetwork/ipam/allocator.go:14:2: cannot find package "github.com/docker/libnetwork/ipamutils" in any of:
        /usr/src/go/src/github.com/docker/libnetwork/ipamutils (from $GOROOT)
        /go/src/github.com/docker/libnetwork/ipamutils (from $GOPATH)
        /test/src/github.com/docker/libnetwork/ipamutils
src/github.com/docker/docker/vendor/src/github.com/docker/libnetwork/ipams/builtin/builtin_unix.go:9:2: cannot find package "github.com/docker/libnetwork/ipam" in any of:
        /usr/src/go/src/github.com/docker/libnetwork/ipam (from $GOROOT)
        /go/src/github.com/docker/libnetwork/ipam (from $GOPATH)
        /test/src/github.com/docker/libnetwork/ipam
src/github.com/docker/docker/vendor/src/github.com/docker/libnetwork/ipams/remote/remote.go:11:2: cannot find package "github.com/docker/libnetwork/ipams/remote/api" in any of:
        /usr/src/go/src/github.com/docker/libnetwork/ipams/remote/api (from $GOROOT)
        /go/src/github.com/docker/libnetwork/ipams/remote/api (from $GOPATH)
        /test/src/github.com/docker/libnetwork/ipams/remote/api
src/github.com/docker/docker/vendor/src/github.com/docker/libnetwork/networkdb/networkdb.go:10:2: cannot find package "github.com/armon/go-radix" in any of:
        /usr/src/go/src/github.com/armon/go-radix (from $GOROOT)
        /go/src/github.com/armon/go-radix (from $GOPATH)
        /test/src/github.com/armon/go-radix
src/github.com/docker/docker/vendor/src/github.com/docker/libnetwork/networkdb/message.go:8:2: cannot find package "github.com/hashicorp/go-msgpack/codec" in any of:
        /usr/src/go/src/github.com/hashicorp/go-msgpack/codec (from $GOROOT)
        /go/src/github.com/hashicorp/go-msgpack/codec (from $GOPATH)
        /test/src/github.com/hashicorp/go-msgpack/codec
src/github.com/docker/docker/vendor/src/github.com/docker/libnetwork/networkdb/broadcast.go:4:2: cannot find package "github.com/hashicorp/memberlist" in any of:
        /usr/src/go/src/github.com/hashicorp/memberlist (from $GOROOT)
        /go/src/github.com/hashicorp/memberlist (from $GOPATH)
        /test/src/github.com/hashicorp/memberlist
src/github.com/docker/docker/vendor/src/github.com/docker/libnetwork/osl/namespace_linux.go:15:2: cannot find package "github.com/docker/libnetwork/ns" in any of:
        /usr/src/go/src/github.com/docker/libnetwork/ns (from $GOROOT)
        /go/src/github.com/docker/libnetwork/ns (from $GOPATH)
        /test/src/github.com/docker/libnetwork/ns
src/github.com/docker/docker/vendor/src/github.com/docker/notary/client/client.go:16:2: cannot find package "github.com/docker/notary" in any of:
        /usr/src/go/src/github.com/docker/notary (from $GOROOT)
        /go/src/github.com/docker/notary (from $GOPATH)
        /test/src/github.com/docker/notary
src/github.com/docker/docker/vendor/src/github.com/docker/notary/client/client.go:17:2: cannot find package "github.com/docker/notary/client/changelist" in any of:
        /usr/src/go/src/github.com/docker/notary/client/changelist (from $GOROOT)
        /go/src/github.com/docker/notary/client/changelist (from $GOPATH)
        /test/src/github.com/docker/notary/client/changelist
src/github.com/docker/docker/vendor/src/github.com/docker/notary/client/client.go:18:2: cannot find package "github.com/docker/notary/cryptoservice" in any of:
        /usr/src/go/src/github.com/docker/notary/cryptoservice (from $GOROOT)
        /go/src/github.com/docker/notary/cryptoservice (from $GOPATH)
        /test/src/github.com/docker/notary/cryptoservice
src/github.com/docker/docker/vendor/src/github.com/docker/notary/client/client.go:21:2: cannot find package "github.com/docker/notary/tuf" in any of:
        /usr/src/go/src/github.com/docker/notary/tuf (from $GOROOT)
        /go/src/github.com/docker/notary/tuf (from $GOPATH)
        /test/src/github.com/docker/notary/tuf
src/github.com/docker/docker/vendor/src/github.com/docker/notary/client/client.go:22:2: cannot find package "github.com/docker/notary/tuf/client" in any of:
        /usr/src/go/src/github.com/docker/notary/tuf/client (from $GOROOT)
        /go/src/github.com/docker/notary/tuf/client (from $GOPATH)
        /test/src/github.com/docker/notary/tuf/client
src/github.com/docker/docker/vendor/src/github.com/docker/notary/client/client.go:26:2: cannot find package "github.com/docker/notary/tuf/utils" in any of:
        /usr/src/go/src/github.com/docker/notary/tuf/utils (from $GOROOT)
        /go/src/github.com/docker/notary/tuf/utils (from $GOPATH)
        /test/src/github.com/docker/notary/tuf/utils
src/github.com/docker/docker/vendor/src/github.com/docker/notary/trustmanager/x509utils.go:20:2: cannot find package "github.com/agl/ed25519" in any of:
        /usr/src/go/src/github.com/agl/ed25519 (from $GOROOT)
        /go/src/github.com/agl/ed25519 (from $GOPATH)
        /test/src/github.com/agl/ed25519
src/github.com/docker/docker/vendor/src/github.com/docker/notary/tuf/builder.go:6:2: cannot find package "github.com/docker/go/canonical/json" in any of:
        /usr/src/go/src/github.com/docker/go/canonical/json (from $GOROOT)
        /go/src/github.com/docker/go/canonical/json (from $GOPATH)
        /test/src/github.com/docker/go/canonical/json
src/github.com/docker/docker/vendor/src/github.com/docker/notary/tuf/store/httpstore.go:27:2: cannot find package "github.com/docker/notary/tuf/validation" in any of:
        /usr/src/go/src/github.com/docker/notary/tuf/validation (from $GOROOT)
        /go/src/github.com/docker/notary/tuf/validation (from $GOPATH)
        /test/src/github.com/docker/notary/tuf/validation
src/github.com/docker/docker/vendor/src/github.com/fluent/fluent-logger-golang/fluent/proto_gen.go:8:2: cannot find package "github.com/tinylib/msgp/msgp" in any of:
        /usr/src/go/src/github.com/tinylib/msgp/msgp (from $GOROOT)
        /go/src/github.com/tinylib/msgp/msgp (from $GOPATH)
        /test/src/github.com/tinylib/msgp/msgp
src/github.com/docker/docker/vendor/src/github.com/gorilla/mux/mux.go:12:2: cannot find package "github.com/gorilla/context" in any of:
        /usr/src/go/src/github.com/gorilla/context (from $GOROOT)
        /go/src/github.com/gorilla/context (from $GOPATH)
        /test/src/github.com/gorilla/context
src/github.com/docker/docker/vendor/src/github.com/hashicorp/memberlist/net.go:12:2: cannot find package "github.com/armon/go-metrics" in any of:
        /usr/src/go/src/github.com/armon/go-metrics (from $GOROOT)
        /go/src/github.com/armon/go-metrics (from $GOPATH)
        /test/src/github.com/armon/go-metrics
src/github.com/docker/docker/vendor/src/github.com/hashicorp/memberlist/memberlist.go:27:2: cannot find package "github.com/hashicorp/go-multierror" in any of:
        /usr/src/go/src/github.com/hashicorp/go-multierror (from $GOROOT)
        /go/src/github.com/hashicorp/go-multierror (from $GOPATH)
        /test/src/github.com/hashicorp/go-multierror
src/github.com/docker/docker/vendor/src/github.com/hashicorp/serf/serf/ping_delegate.go:11:2: cannot find package "github.com/hashicorp/serf/coordinate" in any of:
        /usr/src/go/src/github.com/hashicorp/serf/coordinate (from $GOROOT)
        /go/src/github.com/hashicorp/serf/coordinate (from $GOPATH)
        /test/src/github.com/hashicorp/serf/coordinate
src/github.com/docker/docker/vendor/src/github.com/mistifyio/go-zfs/utils.go:14:2: cannot find package "github.com/pborman/uuid" in any of:
        /usr/src/go/src/github.com/pborman/uuid (from $GOROOT)
        /go/src/github.com/pborman/uuid (from $GOPATH)
        /test/src/github.com/pborman/uuid
src/github.com/docker/docker/vendor/src/github.com/tinylib/msgp/msgp/read.go:4:2: cannot find package "github.com/philhofer/fwd" in any of:
        /usr/src/go/src/github.com/philhofer/fwd (from $GOROOT)
        /go/src/github.com/philhofer/fwd (from $GOPATH)
        /test/src/github.com/philhofer/fwd
src/github.com/docker/docker/vendor/src/github.com/vbatts/tar-split/tar/asm/disassemble.go:7:2: cannot find package "github.com/vbatts/tar-split/archive/tar" in any of:
        /usr/src/go/src/github.com/vbatts/tar-split/archive/tar (from $GOROOT)
        /go/src/github.com/vbatts/tar-split/archive/tar (from $GOPATH)
        /test/src/github.com/vbatts/tar-split/archive/tar
can't load package: package github.com/docker/libcontainer/src/github.com/docker/docker/vendor/src/golang.org/x/net/context: code in directory /go/src/github.com/docker/libcontainer/src/github.com/docker/docker/vendor/src/golang.org/x/net/context expects import "golang.org/x/net/context"
can't load package: package github.com/docker/libcontainer/src/github.com/docker/docker/vendor/src/golang.org/x/net/context/ctxhttp: code in directory /go/src/github.com/docker/libcontainer/src/github.com/docker/docker/vendor/src/golang.org/x/net/context/ctxhttp expects import "golang.org/x/net/context/ctxhttp"
can't load package: package github.com/docker/libcontainer/src/github.com/docker/docker/vendor/src/golang.org/x/net/internal/timeseries: code in directory /go/src/github.com/docker/libcontainer/src/github.com/docker/docker/vendor/src/golang.org/x/net/internal/timeseries expects import "golang.org/x/net/internal/timeseries"
can't load package: package github.com/docker/libcontainer/src/github.com/docker/docker/vendor/src/golang.org/x/net/proxy: code in directory /go/src/github.com/docker/libcontainer/src/github.com/docker/docker/vendor/src/golang.org/x/net/proxy expects import "golang.org/x/net/proxy"
can't load package: package github.com/docker/libcontainer/src/github.com/docker/docker/vendor/src/golang.org/x/net/trace: code in directory /go/src/github.com/docker/libcontainer/src/github.com/docker/docker/vendor/src/golang.org/x/net/trace expects import "golang.org/x/net/trace"
can't load package: package github.com/docker/libcontainer/src/github.com/docker/docker/vendor/src/golang.org/x/net/websocket: code in directory /go/src/github.com/docker/libcontainer/src/github.com/docker/docker/vendor/src/golang.org/x/net/websocket expects import "golang.org/x/net/websocket"
can't load package: package github.com/docker/libcontainer/src/github.com/docker/docker/vendor/src/golang.org/x/oauth2: code in directory /go/src/github.com/docker/libcontainer/src/github.com/docker/docker/vendor/src/golang.org/x/oauth2 expects import "golang.org/x/oauth2"
can't load package: package github.com/docker/libcontainer/src/github.com/docker/docker/vendor/src/golang.org/x/oauth2/google: code in directory /go/src/github.com/docker/libcontainer/src/github.com/docker/docker/vendor/src/golang.org/x/oauth2/google expects import "golang.org/x/oauth2/google"
can't load package: package github.com/docker/libcontainer/src/github.com/docker/docker/vendor/src/golang.org/x/oauth2/jws: code in directory /go/src/github.com/docker/libcontainer/src/github.com/docker/docker/vendor/src/golang.org/x/oauth2/jws expects import "golang.org/x/oauth2/jws"
src/github.com/docker/docker/vendor/src/golang.org/x/oauth2/jwt/jwt.go:22:2: cannot find package "golang.org/x/oauth2" in any of:
        /usr/src/go/src/golang.org/x/oauth2 (from $GOROOT)
        /go/src/golang.org/x/oauth2 (from $GOPATH)
        /test/src/golang.org/x/oauth2
src/github.com/docker/docker/vendor/src/golang.org/x/oauth2/jwt/jwt.go:23:2: cannot find package "golang.org/x/oauth2/internal" in any of:
        /usr/src/go/src/golang.org/x/oauth2/internal (from $GOROOT)
        /go/src/golang.org/x/oauth2/internal (from $GOPATH)
        /test/src/golang.org/x/oauth2/internal
src/github.com/docker/docker/vendor/src/golang.org/x/oauth2/jwt/jwt.go:24:2: cannot find package "golang.org/x/oauth2/jws" in any of:
        /usr/src/go/src/golang.org/x/oauth2/jws (from $GOROOT)
        /go/src/golang.org/x/oauth2/jws (from $GOPATH)
        /test/src/golang.org/x/oauth2/jws
can't load package: package github.com/docker/libcontainer/src/github.com/docker/docker/vendor/src/golang.org/x/sys/windows/registry: no buildable Go source files in /go/src/github.com/docker/libcontainer/src/github.com/docker/docker/vendor/src/golang.org/x/sys/windows/registry
can't load package: package github.com/docker/libcontainer/src/github.com/docker/docker/vendor/src/golang.org/x/sys/windows/svc: no buildable Go source files in /go/src/github.com/docker/libcontainer/src/github.com/docker/docker/vendor/src/golang.org/x/sys/windows/svc
can't load package: package github.com/docker/libcontainer/src/github.com/docker/docker/vendor/src/golang.org/x/sys/windows/svc/debug: no buildable Go source files in /go/src/github.com/docker/libcontainer/src/github.com/docker/docker/vendor/src/golang.org/x/sys/windows/svc/debug
can't load package: package github.com/docker/libcontainer/src/github.com/docker/docker/vendor/src/golang.org/x/sys/windows/svc/eventlog: no buildable Go source files in /go/src/github.com/docker/libcontainer/src/github.com/docker/docker/vendor/src/golang.org/x/sys/windows/svc/eventlog
can't load package: package github.com/docker/libcontainer/src/github.com/docker/docker/vendor/src/golang.org/x/sys/windows/svc/mgr: no buildable Go source files in /go/src/github.com/docker/libcontainer/src/github.com/docker/docker/vendor/src/golang.org/x/sys/windows/svc/mgr
can't load package: package github.com/docker/libcontainer/src/github.com/docker/docker/vendor/src/google.golang.org/api/googleapi: code in directory /go/src/github.com/docker/libcontainer/src/github.com/docker/docker/vendor/src/google.golang.org/api/googleapi expects import "google.golang.org/api/googleapi"
can't load package: package github.com/docker/libcontainer/src/github.com/docker/docker/vendor/src/google.golang.org/api/logging/v1beta3: code in directory /go/src/github.com/docker/libcontainer/src/github.com/docker/docker/vendor/src/google.golang.org/api/logging/v1beta3 expects import "google.golang.org/api/logging/v1beta3"
can't load package: package github.com/docker/libcontainer/src/github.com/docker/docker/vendor/src/google.golang.org/cloud: code in directory /go/src/github.com/docker/libcontainer/src/github.com/docker/docker/vendor/src/google.golang.org/cloud expects import "google.golang.org/cloud"
can't load package: package github.com/docker/libcontainer/src/github.com/docker/docker/vendor/src/google.golang.org/cloud/compute/metadata: code in directory /go/src/github.com/docker/libcontainer/src/github.com/docker/docker/vendor/src/google.golang.org/cloud/compute/metadata expects import "google.golang.org/cloud/compute/metadata"
src/github.com/docker/docker/vendor/src/google.golang.org/cloud/internal/transport/dial.go:24:2: cannot find package "golang.org/x/oauth2/google" in any of:
        /usr/src/go/src/golang.org/x/oauth2/google (from $GOROOT)
        /go/src/golang.org/x/oauth2/google (from $GOPATH)
        /test/src/golang.org/x/oauth2/google
src/github.com/docker/docker/vendor/src/google.golang.org/cloud/internal/transport/dial.go:25:2: cannot find package "google.golang.org/cloud" in any of:
        /usr/src/go/src/google.golang.org/cloud (from $GOROOT)
        /go/src/google.golang.org/cloud (from $GOPATH)
        /test/src/google.golang.org/cloud
src/github.com/docker/docker/vendor/src/google.golang.org/cloud/internal/transport/dial.go:26:2: cannot find package "google.golang.org/cloud/internal/opts" in any of:
        /usr/src/go/src/google.golang.org/cloud/internal/opts (from $GOROOT)
        /go/src/google.golang.org/cloud/internal/opts (from $GOPATH)
        /test/src/google.golang.org/cloud/internal/opts
src/github.com/docker/docker/vendor/src/google.golang.org/cloud/internal/transport/dial.go:29:2: cannot find package "google.golang.org/grpc/credentials/oauth" in any of:
        /usr/src/go/src/google.golang.org/grpc/credentials/oauth (from $GOROOT)
        /go/src/google.golang.org/grpc/credentials/oauth (from $GOPATH)
        /test/src/google.golang.org/grpc/credentials/oauth
can't load package: package github.com/docker/libcontainer/src/github.com/docker/docker/vendor/src/google.golang.org/cloud/logging: code in directory /go/src/github.com/docker/libcontainer/src/github.com/docker/docker/vendor/src/google.golang.org/cloud/logging expects import "google.golang.org/cloud/logging"
can't load package: package github.com/docker/libcontainer/src/github.com/docker/docker/vendor/src/google.golang.org/grpc: code in directory /go/src/github.com/docker/libcontainer/src/github.com/docker/docker/vendor/src/google.golang.org/grpc expects import "google.golang.org/grpc"
can't load package: package github.com/docker/libcontainer/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/codes: code in directory /go/src/github.com/docker/libcontainer/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/codes expects import "google.golang.org/grpc/codes"
can't load package: package github.com/docker/libcontainer/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/credentials: code in directory /go/src/github.com/docker/libcontainer/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/credentials expects import "google.golang.org/grpc/credentials"
src/github.com/docker/docker/vendor/src/google.golang.org/grpc/credentials/oauth/oauth.go:44:2: cannot find package "golang.org/x/oauth2/jwt" in any of:
        /usr/src/go/src/golang.org/x/oauth2/jwt (from $GOROOT)
        /go/src/golang.org/x/oauth2/jwt (from $GOPATH)
        /test/src/golang.org/x/oauth2/jwt
can't load package: package github.com/docker/libcontainer/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/grpclog: code in directory /go/src/github.com/docker/libcontainer/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/grpclog expects import "google.golang.org/grpc/grpclog"
can't load package: package github.com/docker/libcontainer/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/metadata: code in directory /go/src/github.com/docker/libcontainer/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/metadata expects import "google.golang.org/grpc/metadata"
can't load package: package github.com/docker/libcontainer/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/transport: code in directory /go/src/github.com/docker/libcontainer/src/github.com/docker/docker/vendor/src/google.golang.org/grpc/transport expects import "google.golang.org/grpc/transport"
src/github.com/docker/libcontainer/vendor/src/github.com/Sirupsen/logrus/examples/hook/hook.go:5:2: cannot find package "github.com/Sirupsen/logrus/hooks/airbrake" in any of:
        /usr/src/go/src/github.com/Sirupsen/logrus/hooks/airbrake (from $GOROOT)
        /go/src/github.com/Sirupsen/logrus/hooks/airbrake (from $GOPATH)
        /test/src/github.com/Sirupsen/logrus/hooks/airbrake
src/github.com/docker/libcontainer/vendor/src/github.com/golang/protobuf/protoc-gen-go/link_grpc.go:34:8: cannot find package "github.com/golang/protobuf/protoc-gen-go/internal/grpc" in any of:
        /usr/src/go/src/github.com/golang/protobuf/protoc-gen-go/internal/grpc (from $GOROOT)
        /go/src/github.com/golang/protobuf/protoc-gen-go/internal/grpc (from $GOPATH)
        /test/src/github.com/golang/protobuf/protoc-gen-go/internal/grpc
src/github.com/golang/protobuf/protoc-gen-go/testdata/my_test/test.pb.go:27:8: no buildable Go source files in /test/src/github.com/golang/protobuf/protoc-gen-go/testdata/multi
can't load package: package github.com/docker/libcontainer/src/github.com/opencontainers/runtime-spec/.tool: no buildable Go source files in /go/src/github.com/docker/libcontainer/src/github.com/opencontainers/runtime-spec/.tool
src/github.com/opencontainers/runtime-spec/schema/validate.go:8:2: cannot find package "github.com/xeipuuv/gojsonschema" in any of:
        /usr/src/go/src/github.com/xeipuuv/gojsonschema (from $GOROOT)
        /go/src/github.com/xeipuuv/gojsonschema (from $GOPATH)
        /test/src/github.com/xeipuuv/gojsonschema
make: *** [direct-install] Error 1

@marcosnils
Copy link
Contributor

@shashankmjain , clone the repo somewhere and just run make on the repo root. That should build runC and leave the runC binary inside the root folder.

@marcosnils
Copy link
Contributor

@shashankmjain you can also build with docker if you don't have Go installed with make dbuild

@cyphar
Copy link
Member

cyphar commented May 24, 2016

@marcosnils Yes, we should update to using vendor/ directories. My vote is to switch to govend. The only problem is that some people might need to compile with older versions of Go.

@marcosnils
Copy link
Contributor

@cyphar I've seen https://github.com/kardianos/govendor is usually the favorite. I use it in my projects and haven't had any issues so far.

Regarding older version of Go, I believe that won't be a problem? #827 (comment)

@cyphar
Copy link
Member

cyphar commented May 24, 2016

My concern is that gcc-go doesn't support the vendor experiment. So we'll have to add something like

% ln -sf . vendor/src

To allow us to also just set the GOPATH to vendor/. I'm really not sure what the Go developers were thinking with changing this workflow with such a trivially different filesystem structure.

@crosbymichael
Copy link
Member

ref #728

@shashankmjain
Copy link
Author

Thanks.
Able to build via runc.

stefanberger pushed a commit to stefanberger/runc that referenced this issue Sep 8, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants