Explorar el Código

Merge pull request #2540 from eest/golang-remove-verify

Remove unnecessary "go mod verify"
yosifkit hace 8 meses
padre
commit
7f0ca04705
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      golang/content.md

+ 1 - 1
golang/content.md

@@ -21,7 +21,7 @@ WORKDIR /usr/src/app
 
 # pre-copy/cache go.mod for pre-downloading dependencies and only redownloading them in subsequent builds if they change
 COPY go.mod go.sum ./
-RUN go mod download && go mod verify
+RUN go mod download
 
 COPY . .
 RUN go build -v -o /usr/local/bin/app ./...