From cc7365b3f867023bcc22ca90ea77715aa7086747 Mon Sep 17 00:00:00 2001 From: Cédric Ollivier Date: Fri, 21 Oct 2022 10:46:31 +0200 Subject: Stop using root in testing containers MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It now creates and leverages xtesting as main user. Change-Id: I5b871ac2729a875674514aab75ae079e1bf125f5 Signed-off-by: Cédric Ollivier (cherry picked from commit b1e22e37cc436451b3519a0ef7f9704b5a86f9cc) --- docker/benchmarking/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) (limited to 'docker/benchmarking/Dockerfile') diff --git a/docker/benchmarking/Dockerfile b/docker/benchmarking/Dockerfile index 787f7b5c..3c0a458a 100644 --- a/docker/benchmarking/Dockerfile +++ b/docker/benchmarking/Dockerfile @@ -3,6 +3,7 @@ FROM opnfv/functest-kubernetes-smoke:v1.25 ARG NETPERF_TAG=1104ce23f6c1758796e88f3c23b050099074cf81 ARG PLOTPERF_TAG=2455313f4b9581795a8f642243acaad472d91804 +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"] -- cgit 1.2.3-korg