We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 326dfc1 commit b86fc55Copy full SHA for b86fc55
.ci/Dockerfile
@@ -7,8 +7,8 @@ ARG VERSION=1-alpine
7
FROM golang:${VERSION}
8
9
RUN apk add --no-cache --quiet make curl git jq unzip tree && \
10
- go get -u golang.org/x/lint/golint && \
11
- curl -sSL --retry 3 --retry-connrefused https://github.com/gotestyourself/gotestsum/releases/download/v1.6.1/gotestsum_1.6.1_linux_amd64.tar.gz | tar -xz -C /usr/local/bin gotestsum
+ go install golang.org/x/lint/golint@latest && \
+ go install gotest.tools/gotestsum@latest
12
13
VOLUME ["/tmp"]
14
0 commit comments