mirror of
https://github.com/SonarSource/sonarqube-scan-action.git
synced 2025-12-13 01:41:15 +00:00
17 lines
672 B
Docker
17 lines
672 B
Docker
FROM sonarsource/sonar-scanner-cli:4.8
|
|
|
|
LABEL version="1.2.0" \
|
|
repository="https://github.com/sonarsource/sonarqube-scan-action" \
|
|
homepage="https://github.com/sonarsource/sonarqube-scan-action" \
|
|
maintainer="SonarSource" \
|
|
com.github.actions.name="SonarQube Scan" \
|
|
com.github.actions.description="Scan your code with SonarQube to detect Bugs, Vulnerabilities and Code Smells in up to 27 programming languages!" \
|
|
com.github.actions.icon="check" \
|
|
com.github.actions.color="green"
|
|
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
COPY cleanup.sh /cleanup.sh
|
|
RUN chmod +x /cleanup.sh
|
|
ENTRYPOINT ["/entrypoint.sh"]
|