Glide installing issue

344 Views Asked by At

Installing glide is failing:

Step 3/17 : RUN curl https://glide.sh/get | sh
...
Step 5/17 : RUN glide install
...
/bin/sh: 1: glide: not found
The command '/bin/sh -c glide install' returned a non-zero code: 127

When I access https://glide.sh/get, I get certificate error... Is glide still used? Shall I rewrite my Dockerfile to some newer way of installing dependencies?

1

There are 1 best solutions below

0
On

Is glide still used?

No.

Shall I rewrite my Dockerfile to some newer way of installing dependencies?

Yes, of course. Use Go modules. See https://golang.org/doc/modules/managing-dependencies .