add entrypoint

This commit is contained in:
Aleksandr Razumov 2020-04-26 03:54:00 +03:00
parent 6eb54d49f7
commit 4787970861
No known key found for this signature in database
GPG Key ID: 1D14A82D2E311045
2 changed files with 6 additions and 1 deletions

View File

@ -1 +1,5 @@
FROM golangci/golangci-lint:v1.25 FROM golangci/golangci-lint:v1.25
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]

View File

@ -1,3 +1,4 @@
#!/bin/bash #!/bin/bash
golangci-lint run --out-format github-actions # shellcheck disable=SC2086
golangci-lint run --out-format github-actions ${FLAGS}