[Closed] Dep Docker image (Golang package manager)
50K+
PROJECT IS CLOSED AND ARCHIVED. NO MAINTAINING WILL BE CONTINUED.
Consider to use Go modules instead.
Dockerfile links0.5.4, 0.5, latest (debian/Dockerfile)0.5.4-alpine, 0.5-alpine, alpine (alpine/Dockerfile)dep is a prototype dependency management tool for Go.
dep is the official experiment, but not yet the official tool. Check out the Roadmap for more on what this means!
Mount your project into correct $GOPATH directory and provide the dep command you require:
docker run --rm -v $(pwd):/go/src/my/pkg/name -w /go/src/my/pkg/name \
instrumentisto/dep ensure
If you want to preserve dep caches, just mount /go/pkg/dep directory inside container to desired location:
docker run --rm -v $(pwd):/go/src/my/pkg/name -w /go/src/my/pkg/name \
-v $(pwd)/.caches/dep:/go/pkg/dep \
instrumentisto/dep ensure -update
latestLatest version of dep.
X.YLatest version of dep X.Y branch.
X.Y.ZConcrete X.Y.Z version of dep.
alpineThis image is based on the popular Alpine Linux project, available in the alpine official image. Alpine Linux is much smaller than most distribution base images (~5MB), and thus leads to much slimmer images in general.
dep itself is licensed under BSD-3-Clause license.
And dep Docker image is licensed under MIT license.
We can't notice comments in the DockerHub so don't use them for reporting issue or asking question.
If you have any problems with or questions about this image, please contact us through a GitHub issue.
Content type
Image
Digest
Size
288.8 MB
Last updated
about 7 years ago
docker pull instrumentisto/dep