From b1e22e37cc436451b3519a0ef7f9704b5a86f9cc 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 --- docker/cnf/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) (limited to 'docker/cnf/Dockerfile') diff --git a/docker/cnf/Dockerfile b/docker/cnf/Dockerfile index 690313d9..37cb4691 100644 --- a/docker/cnf/Dockerfile +++ b/docker/cnf/Dockerfile @@ -3,6 +3,7 @@ FROM opnfv/functest-kubernetes-core ARG CNF_TESTSUITE_TAG=v0.34.0 ARG HELM_TAG=v3.3.1 +USER root RUN apk --no-cache add --update wget curl libc6-compat ncurses && \ tag=$(curl -s https://storage.googleapis.com/kubernetes-release/release/latest.txt) && \ case $(uname -m) in armv7l) arch=arm;; aarch64) arch=arm64;; x86_64) arch=amd64;; esac && \ @@ -28,5 +29,6 @@ RUN apk --no-cache add --update wget curl libc6-compat ncurses && \ ln -s /src/cnf-testsuite/points-all.yml /src/cnf-testsuite/points.yml && \ ln -s /usr/local/bin/cnf-testsuite /src/cnf-testsuite/cnf-testsuite && \ rm -rf /src/cnf-testsuite-$CNF_TESTSUITE_TAG.tar.gz /src/cnf-testsuite/.git ;; esac +USER xtesting COPY testcases.yaml /etc/xtesting/testcases.yaml CMD ["run_tests", "-t", "all"] -- cgit