diff options
author | Mauro Sardara <msardara@cisco.com> | 2022-08-12 12:28:13 +0200 |
---|---|---|
committer | Mauro Sardara <msardara@cisco.com> | 2022-08-12 12:31:31 +0200 |
commit | ce15c05a8a7d01cf7d92e81357aefa1f9b86a6d0 (patch) | |
tree | 9df7aac00afc385c26626dc1065f0af7dac60f0c /scripts/Dockerfile.sonarcloud | |
parent | 94884d2a70bd65f9e85018aa154daa3d517d3ca8 (diff) |
ci(sonarscan): fixes for sonar build
- Add submodule init before running the docker compose up command
- Mount workspace with the :z flag to modify the selinux label of the directory
- Build docker image with amd64 architecture, as sonar build wrapper only exists for x64
Ref: HICN-741
Signed-off-by: Mauro Sardara <msardara@cisco.com>
Change-Id: I3cc3e285ce216eec9795011f67758df590dc6fec
Signed-off-by: Mauro Sardara <msardara@cisco.com>
Diffstat (limited to 'scripts/Dockerfile.sonarcloud')
-rw-r--r-- | scripts/Dockerfile.sonarcloud | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/Dockerfile.sonarcloud b/scripts/Dockerfile.sonarcloud index ad8b30ef7..edfe986a0 100644 --- a/scripts/Dockerfile.sonarcloud +++ b/scripts/Dockerfile.sonarcloud @@ -1,4 +1,5 @@ -FROM ubuntu:focal +FROM --platform=linux/amd64 ubuntu:focal + ENV DEBIAN_FRONTEND=noninteractive WORKDIR /workspace COPY Makefile versions.cmake ./ |