2019-01-17 08:45:37 +00:00
|
|
|
FROM golangci/golangci-lint:v1.12.5
|
2019-01-13 04:45:25 +00:00
|
|
|
|
2019-05-28 16:47:40 +00:00
|
|
|
RUN apt-get install git
|
|
|
|
|
2019-01-23 19:51:22 +00: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-13 04:45:25 +00:00
|
|
|
COPY "entrypoint.sh" "/entrypoint.sh"
|
|
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
|
2019-01-23 19:51:22 +00:00
|
|
|
ENV GOFLAGS -mod=vendor
|
2019-05-28 16:47:40 +00:00
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|