We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a31786f commit e9754bdCopy full SHA for e9754bd
Dockerfile
@@ -224,7 +224,8 @@ FROM docker.io/library/golang:1.23 as gotests
224
RUN go install github.com/cweill/gotests/gotests@latest
225
226
FROM docker.io/library/golang:1.23 as gotestsum
227
-RUN go install gotest.tools/gotestsum@v0.4.2
+ARG GOTESTSUM_VERSION=v1.12.0
228
+RUN go install gotest.tools/gotestsum@${GOTESTSUM_VERSION}
229
230
FROM scratch as tools-go
231
COPY --link --from=go-delve /go/bin/dlv /bin/
0 commit comments