[go-nuts] Govendor and Docker Build Container issues
Is your local files accessible to your devops? Maybe set "-e GOPATH=/go/app:/local -v $GOPATH/src/lib:/local/src/lib:ro" or something? Provide the host (local) GOPATH to the container, accessible under the container's GOPATH. -- You received this message because you are subscribed to the Google
[go-nuts] Govendor and Docker Build Container issues
I have a application structure as follows in my GoPath: --/ myproject | |-- apps |-- app1 |-- main.go |-- app2 |-- main.go |-- appN |-- main.go |-- libs