Error: godep: unable to detect version control system for code.google.com/ path

Hello I used to generate a docker image building mattermost my self using this commands (derivated from 0.5 docker file)

go get github.com/tools/godep
cd /go/src/github.com/mattermost/platform; godep restore

Unfortunatly when I run godep I have the following error :
godep: unable to detect version control system for code.google.com/ path

Any idea how to avoid this error ?
Thanks for any clue.
Jean-Yves

if your using our make file you can remove the godep restore command. The make file now builds with “godep build” or “godep install” vs “go install”

Thanks for the clue, I will update my dockerfile accordingly