From 217a188a857179a2194a78cb391f0405a36f03d6 Mon Sep 17 00:00:00 2001 From: Murat Kumykov Date: Tue, 22 Sep 2020 12:29:29 +0000 Subject: [PATCH 1/2] Update Dockerfile with fixed UID 1001 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 97f7223..26085bb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,7 +20,7 @@ ENV VENDOR=Synopsys \ # Prep for install Coverity Platform in /opt/coverity in the docker image RUN mkdir -p "${COVERITY_HOME}" && \ - useradd -ms /bin/bash coverity && \ + useradd -ms /bin/bash -u 1001 coverity && \ chown coverity:coverity "${COVERITY_HOME}" # Add standard packages -- GitLab From 29a2d7a34810ed7414f03f21bfb76b0fed5d7fa7 Mon Sep 17 00:00:00 2001 From: Murat Kumykov Date: Mon, 26 Oct 2020 03:40:07 +0000 Subject: [PATCH 2/2] Update Jenkinsfile --- Jenkinsfile | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 829c02a..d232530 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,10 +1,4 @@ @Library('DCCSCR@master') _ -dccscrPipeline(version: "1.4.2") +dccscrPipeline(version: "2020.03") -/* Optional parameters: -dccscrPipeline(contributor: "synopsys", - product: "coverity", - image: "coverity", - version: "2019.09") -*/ -- GitLab