mirror of
https://ops.gitlab.net/gitlab-org/gitlab-build-images.git
synced 2025-12-09 18:12:55 +01:00
The codequality report format is in json, adding the jq utility will enable users to query, manipulate, and analyze the results of the report. Example: https://gitlab.com/gitlab-org/gitlab/merge_requests/20404#note_262017873 Related to: https://gitlab.com/gitlab-org/gitlab/merge_requests/20404
5 lines
229 B
Docker
5 lines
229 B
Docker
FROM golangci/golangci-lint:v1.21-alpine
|
|
# git must be installed for golangci-lint's --new-from-rev flag to work.
|
|
RUN apk --no-cache add git jq
|
|
# Include a default .golangci.yml
|
|
COPY /assets/.golangci.yml /golangci/.golangci.yml
|