mirror of
https://github.com/SonarSource/sonarqube-scan-action.git
synced 2025-12-16 02:56:30 +00:00
20 lines
725 B
Docker
20 lines
725 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"]
|
|
|
|
COPY flutter /bin/flutter
|
|
RUN chmod +x /bin/flutter
|