First make sure you have govendor installed.
To install govendor in your $GOPATH/bin
simply run
go get -u github.com/kardianos/govendor
If you don't have the $GOPATH/bin
folder on your path, do
export PATH=$PATH:$GOPATH/bin
To build the whole project, type
make
To build all docker images type
make docker
It is also possible to target only specific modules. For instance to build only the virt-launcher
, type
make build WAHT=virt-launcher