diff options
author | 2022-10-21 10:46:31 +0200 | |
---|---|---|
committer | 2022-10-21 11:30:29 +0200 | |
commit | cc7365b3f867023bcc22ca90ea77715aa7086747 (patch) | |
tree | b1cef3f824b2732fa3e3e7759580ef758b8b23e7 /docker/cnf | |
parent | 99fde6a365c9a09d8df8f9218f913e2e5b416f09 (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>
(cherry picked from commit b1e22e37cc436451b3519a0ef7f9704b5a86f9cc)
Diffstat (limited to 'docker/cnf')
-rw-r--r-- | docker/cnf/Dockerfile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/docker/cnf/Dockerfile b/docker/cnf/Dockerfile index f88294b4..62048814 100644 --- a/docker/cnf/Dockerfile +++ b/docker/cnf/Dockerfile @@ -4,6 +4,7 @@ ARG K8S_TAG=1.25 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/stable-$K8S_TAG.txt) && \ case $(uname -m) in armv7l) arch=arm;; aarch64) arch=arm64;; x86_64) arch=amd64;; esac && \ @@ -29,5 +30,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"] |