2019-01-17 02:45:37 -06:00
|
|
|
FROM golangci/golangci-lint:v1.12.5
|
2019-01-12 22:45:25 -06:00
|
|
|
|
2019-01-23 13:51:22 -06:00
|
|
|
LABEL "com.github.actions.name"="Check"
|
|
|
|
LABEL "com.github.actions.description"="Run static analysis and unit tests"
|
|
|
|
LABEL "com.github.actions.icon"="check-circle"
|
|
|
|
LABEL "com.github.actions.color"="green"
|
|
|
|
|
2019-01-12 22:45:25 -06:00
|
|
|
COPY "entrypoint.sh" "/entrypoint.sh"
|
|
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
|
2019-01-23 13:51:22 -06:00
|
|
|
ENV GOFLAGS -mod=vendor
|
2019-01-17 02:45:37 -06:00
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|