Questions tagged [godeps]

Godep(Godeps) helps build packages reproducibly by fixing their dependencies. Now deprecated, use `dep` instead.

Godep(Godeps) helps build packages reproducibly by fixing their dependencies.

Now deprecated, use dep instead.

https://github.com/tools/godep

64 questions
-1
votes
1 answer

How to tell my go build to look in the vendor folder for the godep libraries?

I have a simple Dockerfile that I am trying to build and run my Go REST API server. My Dockerfile so far is: FROM golang:latest RUN mkdir /app ADD . /app/ WORKDIR /app RUN go build -o main . CMD ["/app/main"] When I run docker-compose up I get…
Blankman
  • 259,732
  • 324
  • 769
  • 1,199
-1
votes
1 answer

Is there any caching Proxy available for Golang Dependencies as it is existing e.g. for NPM (NodesJS)?

For NodeJS i can use an internal Nexus Server as central Repository. This Server can work in addition as Proxy, so if the Package is not known locally, it goes to registry.npmjs.com or whatever is configured and loads the package from there. Than…
blndev
  • 494
  • 3
  • 13
-2
votes
1 answer

Should I use go modules in production

I am using dep, but I am quite seduced by built-in Go Modules in Go 1.11 In the docs, it says: Go 1.11 includes preliminary support for versioned modules as proposed here. Modules are an experimental opt-in feature in Go 1.11, with the plan of…
Juliatzin
  • 18,455
  • 40
  • 166
  • 325
-10
votes
1 answer

Godep processing custom packages

Here's my problem. I have go-app which uses some custom packages I created by myself. I don't want to publish this packages on git or elsewhere. They're just packages with some certain functionality. So, my project folder looks like…
u_mulder
  • 54,101
  • 5
  • 48
  • 64
1 2 3 4
5