I\'m trying to run a container that will expose a golang service from a package that I have on a private GitHub repo.
Since I am working with GCE, my starter image is g
go get is trying to use https, completely ignoring ssh.
go get
You will have to setup ~/.netrc:
~/.netrc
ADD priv/.netrc /root/.netrc
Where netrc looks like:
machine github.com login github-username password github-password
ref: