File tree Expand file tree Collapse file tree 3 files changed +15
-1
lines changed
Expand file tree Collapse file tree 3 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -55,10 +55,16 @@ changelog:
5555 - Merge branch
5656
5757dockers :
58- - image_templates :
58+ - dockerfile : build/Dockerfile
59+ image_templates :
5960 - " golangci/golangci-lint:latest"
6061 - " golangci/golangci-lint:{{ .Tag }}"
6162 - " golangci/golangci-lint:v{{ .Major }}.{{ .Minor }}"
63+ - dockerfile : build/Dockerfile.alpine
64+ image_templates :
65+ - " golangci/golangci-lint:latest-alpine"
66+ - " golangci/golangci-lint:{{ .Tag }}-alpine"
67+ - " golangci/golangci-lint:v{{ .Major }}.{{ .Minor }}-alpine"
6268
6369brews :
6470 - github :
File renamed without changes.
Original file line number Diff line number Diff line change 1+ FROM golang:1.13-alpine
2+
3+ # required to support cgo
4+ RUN apk --no-cache add gcc musl-dev
5+
6+ # don't place it into $GOPATH/bin because Drone mounts $GOPATH as volume
7+ COPY golangci-lint /usr/bin/
8+ CMD ["golangci-lint"]
You can’t perform that action at this time.
0 commit comments