File tree 3 files changed +15
-1
lines changed
3 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -55,10 +55,16 @@ changelog:
55
55
- Merge branch
56
56
57
57
dockers :
58
- - image_templates :
58
+ - dockerfile : build/Dockerfile
59
+ image_templates :
59
60
- " golangci/golangci-lint:latest"
60
61
- " golangci/golangci-lint:{{ .Tag }}"
61
62
- " 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"
62
68
63
69
brews :
64
70
- 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