mirror of
https://gitea.com/gitea/act_runner.git
synced 2026-03-20 11:56:47 +08:00
12 lines
349 B
Docker
12 lines
349 B
Docker
FROM golangci/golangci-lint:v1.12.5
|
|
|
|
LABEL "com.github.actions.name"="Check"
|
|
LABEL "com.github.actions.description"="Run integration tests"
|
|
LABEL "com.github.actions.icon"="check-circle"
|
|
LABEL "com.github.actions.color"="green"
|
|
|
|
COPY "entrypoint.sh" "/entrypoint.sh"
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
ENV GOFLAGS -mod=vendor
|
|
ENTRYPOINT ["/entrypoint.sh"] |