16 lines
577 B
Docker
16 lines
577 B
Docker
FROM sonarsource/sonar-scanner-cli:11.5
|
|
|
|
LABEL "com.github.actions.name"="SonarQube Scan"
|
|
LABEL "com.github.actions.description"="Scan your code with SonarQube Scanner to detect bugs, vulnerabilities and code smells in more than 25 programming languages."
|
|
LABEL "com.github.actions.icon"="check"
|
|
LABEL "com.github.actions.color"="green"
|
|
|
|
LABEL version="0.0.3"
|
|
LABEL repository="https://code.caldwell.digital/tools/sonarqube-action"
|
|
LABEL homepage="https://caldwell.digital"
|
|
LABEL maintainer="brock"
|
|
|
|
COPY --chmod=777 entrypoint.sh /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|