Answers for "$GOPATH/go.mod exists but should not"

0

$GOPATH/go.mod exists but should not

FROM golang:latest
WORKDIR /usr/src/app
COPY go.mod \
  go.sum /usr/src/app/
RUN set -x && \
  go get github.com/golang/dep/cmd/dep && \
  dep ensure -v
Posted by: Guest on April-01-2021

Code answers related to "$GOPATH/go.mod exists but should not"

Browse Popular Code Answers by Language