aboutsummaryrefslogtreecommitdiffstats
path: root/security/docker
diff options
context:
space:
mode:
authormorganrol <morgan.richomme@orange.com>2021-08-18 16:42:58 +0200
committerMorgan Richomme <morgan.richomme@orange.com>2021-08-19 11:53:38 +0000
commit2e7b7aa9773c4aa8e0334a1398bb12171e6b53d8 (patch)
tree1fbe6ce519fbb0d3493133e01df14114db55d9bf /security/docker
parent4a9c09556e7d8b9b59353eeb1a930ef1fb818433 (diff)
[XTESTING] Fix opnfv/xtesting version to wallaby
opnfv/xtesting master triggered a change in the alpine baseline image (3.14) As a consequence the xtesting docker relying on master were broken, as the list of testcases was not overwrittent in pytho3.9 lib folder 2 options were possible: - fix the version (wallaby) - align the xtesting dockers and change the path to use 3.9 option1 is more secured. For the moment python3.8 is enough for the SDK. If needed we could upgrade later. Issue-ID: TEST-359 Signed-off-by: morganrol <morgan.richomme@orange.com> Change-Id: Iaeada26416e0929a11c17f5c2803448c5a23888c
Diffstat (limited to 'security/docker')
-rw-r--r--security/docker/Dockerfile3
1 files changed, 2 insertions, 1 deletions
diff --git a/security/docker/Dockerfile b/security/docker/Dockerfile
index b6b35d2..ded4d3e 100644
--- a/security/docker/Dockerfile
+++ b/security/docker/Dockerfile
@@ -16,7 +16,7 @@ RUN git clone https://git.onap.org/integration --depth 1
WORKDIR /opt/onap/integration/test/security/sslendpoints
RUN CGO_ENABLED=0 go install -a -ldflags '-w -s -extldflags "-static"'
-FROM opnfv/xtesting AS run
+FROM opnfv/xtesting:wallaby AS run
ARG KUBERNETES_VERSION="v1.19.9"
ARG ONAP_TAG=master
@@ -58,6 +58,7 @@ RUN set -x && \
chmod +x /usr/local/bin/kube-bench && \
chmod +x /usr/local/bin/sslendpoints && \
chmod +x /check_*.sh && \
+ rm -rf /usr/lib/python3.8/site-packages/PyYAML* && \
pip3 install --upgrade pip && \
pip3 install --no-cache-dir \
git+https://git.onap.org/integration/xtesting.git@$ONAP_TESTS_TAG#subdirectory=security && \