mirror of
https://ops.gitlab.net/gitlab-org/gitlab-build-images.git
synced 2025-12-08 17:42:56 +01:00
This commit creates a new directory for static files, and moves static files to assets directory that were previously in the scripts directory.
5 lines
226 B
Docker
5 lines
226 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
|
|
# Include a default .golangci.yml
|
|
COPY /assets/.golangci.yml /golangci/.golangci.yml
|