File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -6,4 +6,4 @@ WORKDIR /app
66
77COPY go.mod go.sum ./
88
9- RUN ash -c "set -exo pipefail; go mod graph | awk '{if ( \$ 1 !~ \" @ \" ) {print \$ 2}}' | xargs -r go get"
9+ RUN go mod download
Original file line number Diff line number Diff line change @@ -10,4 +10,4 @@ COPY go.mod go.sum ./
1010# setting the GODEBUG environment to "installgoroot=all" restores the old behavior
1111RUN GODEBUG="installgoroot=all" go install std
1212
13- RUN ash -c "set -exo pipefail; go mod graph | awk '{if ( \$ 1 !~ \" @ \" ) {print \$ 2}}' | xargs -r go get"
13+ RUN go mod download
Original file line number Diff line number Diff line change @@ -10,4 +10,4 @@ COPY go.mod go.sum ./
1010# setting the GODEBUG environment to "installgoroot=all" restores the old behavior
1111RUN GODEBUG="installgoroot=all" go install std
1212
13- RUN ash -c "set -exo pipefail; go mod graph | awk '{if ( \$ 1 !~ \" @ \" ) {print \$ 2}}' | xargs -r go get"
13+ RUN go mod download
You can’t perform that action at this time.
0 commit comments