mirror of
https://github.com/SonarSource/sonarqube-scan-action.git
synced 2025-12-12 17:31:15 +00:00
17 lines
674 B
Docker
17 lines
674 B
Docker
FROM sonarsource/sonar-scanner-cli:5.0.1
|
|
|
|
LABEL version="2.0.1" \
|
|
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"]
|