Hi all
In a CI/CD pipeline, we create a Docker image. To run sonar scans automatically, we include the sonar scanner in our image.
So there’s a few instructions in the Dockerfile…
SONAR_SCANNER_VERSION=4.6.2.2472 \
&& wget "https://binaries.sonarsource.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-${SONAR_SCANNER_VERSION}-linux.zip" \
&& unzip sonar-scanner-cli-${SONAR_SCANNER_VERSION}-linux.zip \
...
Having the exact patch number for the scanner is a “no go”. I would like to always download “the latest” version of sonar scanner.
I can look at the folder at Index of /Distribution/sonar-scanner-cli, but there is no “latest” link or similar to always get the latest version.
Can a latest link be added to this directory listing?
If not, is it available somewhere else ?
Thanks