skip to Main Content

How to get a Go library and run it in Docker?

I have this simple Dockerfile: FROM golang:1.16.6-buster RUN wget -O - -q https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.45.2 RUN golangci-lint --version When I build it, no matter how I change the second line above, I am always getting: > [3/3] RUN…

VIEW QUESTION
Back To Top
Search