diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2022-10-21 10:46:31 +0200 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2022-10-21 10:55:46 +0200 |
commit | b1e22e37cc436451b3519a0ef7f9704b5a86f9cc (patch) | |
tree | bc5569b1114576adb855b1fdbcf84a870a90e44f /docker/benchmarking | |
parent | b3bb826fcc018791d92b546589d7044fea637ce9 (diff) |
Stop using root in testing containers
It now creates and leverages xtesting as main user.
Change-Id: I5b871ac2729a875674514aab75ae079e1bf125f5
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'docker/benchmarking')
-rw-r--r-- | docker/benchmarking/Dockerfile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/docker/benchmarking/Dockerfile b/docker/benchmarking/Dockerfile index 4bc06efc..d958b565 100644 --- a/docker/benchmarking/Dockerfile +++ b/docker/benchmarking/Dockerfile @@ -3,6 +3,7 @@ FROM opnfv/functest-kubernetes-smoke ARG NETPERF_TAG=master ARG PLOTPERF_TAG=master +USER root COPY plotperf.py.patch /tmp/plotperf.py.patch RUN apk --no-cache add --update py3-matplotlib && \ apk --no-cache add --virtual .build-deps --update patch go && \ @@ -16,5 +17,6 @@ RUN apk --no-cache add --update py3-matplotlib && \ mv plotperf.py plotperf && chmod a+x plotperf) && \ rm -rf perf-tests /tmp/plotperf.py.patch && \ apk del .build-deps +USER xtesting COPY testcases.yaml /etc/xtesting/testcases.yaml CMD ["run_tests", "-t", "all"] |