A docker image for vendoring Golang dependencies.
This image will allow you to install the dependencies required for your Golang application and vendor them. For more information on how vendoring works with Golang see their wiki.
Simply run a container with this image and map the path to your Golang app as a volume, and set the working directory.
You can then pass any govendor command to the container, see the govendor repo for more information.
Initialise the vendor folder:
$ docker run -it --rm -v path/to/app:/go/src/path/to/app -w /go/src/path/to/app lushdigital/docker-govendor init
List all dependencies:
$ docker run -it --rm -v path/to/app:/go/src/path/to/app -w /go/src/path/to/app lushdigital/docker-govendor list
Add missing dependencies:
$ docker run -it --rm -v path/to/app:/go/src/path/to/app -w /go/src/path/to/app lushdigital/docker-govendor fetch +missing
Sure you can use your GOPATH to manage dependencies on your local machine and most of the time it will work fine. But there are cases where this may not work, for example if your Golang application is part of a monolithic repo (outside of the GOPATH) with apps in other languages.
Basically put this image allows you to install your Golang depencies without the need to go get
, without the need to install govendor
and to be honest without the need to have Golang on your host machine!