⚠️ This repository is no longer used. Please use nix to provision your builds.
This repo will contain docker images with the Sonar Scanner
Current versions available:
.
├──4
│ └── Dockerfile
Images can be found on https://hub.docker.com/r/philipssoftware/sonar-scanner/.
docker run -v (pwd):/root/src
-w /root/src
philipssoftware/sonar-scanner
sonar-scanner -Dsonar.login=<sonar-login-id-goes-here>
-Dsonar.host.url=<sonar-url>
The scanner will read the sonar-project.properties
from your project.
The images obviously contain sonar, node 16, python 2,3 and java 11, but also two other files:
REPO
TAGS
This file has a url to the REPO with specific commit-sha of the build. Example:
$ docker run philipssoftware/sonar-scanner cat REPO
https://github.com/philips-software/docker-sonar-scanner/tree/facb2271e5a563e5d6f65ca3f475cefac37b8b6c
This contains all the similar tags at the point of creation.
$ docker run philipssoftware/sonar-scanner:4 cat TAGS
sonar-scanner sonar-scanner:4 sonar-scanner:4.7 sonar-scanner:4.7.0 sonar-scanner:4.7.0.2747
You can use this to pin down a version of the container from an existing development build for production. When using sonar-scanner:4
for development. This ensures that you've got all security updates in your build. If you want to pin the version of your image down for production, you can use this file inside of the container to look for the most specific tag, the last one.
sonar-scanner
,sonar-scanner:4
,sonar-scanner:4.7
,sonar-scanner:4.7.0
,sonar-scanner:4.7.0.2747
4/Dockerfile
Why do we have our own docker image definitions?
We often need some tools in a container for checking some things. F.e. jq, aws-cli and curl. We can install this every time we need a container, but having this baked into a container seems a better approach.
That's why we want our own docker file definitions.
None
- If you have an issue: report it on the issue tracker
- Jeroen Knoops [email protected]
- Gertjan Maaas [email protected]
License is MIT. See LICENSE file
This module is part of the Philips Forest.
___ _
/ __\__ _ __ ___ ___| |_
/ _\/ _ \| '__/ _ \/ __| __|
/ / | (_) | | | __/\__ \ |_
\/ \___/|_| \___||___/\__|
Infrastructure
Talk to the forestkeepers in the docker-images
-channel on Slack.