From 9595c89855ff0fe376efe2b639e21cf651ef027d Mon Sep 17 00:00:00 2001 From: Madhu Rajanna Date: Thu, 9 Dec 2021 12:02:23 +0530 Subject: [PATCH] ci: install findutils in dockerfile.test currently getting find command not found and xargs command not found when we run the dockerfile.test. installing findutils to fix it. Signed-off-by: Madhu Rajanna --- scripts/Dockerfile.test | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/scripts/Dockerfile.test b/scripts/Dockerfile.test index cd8064cc2..5a67a7db0 100644 --- a/scripts/Dockerfile.test +++ b/scripts/Dockerfile.test @@ -17,7 +17,7 @@ ENV \ GOPATH=${GOPATH} \ GOROOT=${GOROOT} \ GO111MODULE=on \ - PATH="${GOROOT}/bin:${GOPATH}/bin:/opt/commitlint/node_modules/.bin:${PATH}" + PATH="${GOPATH}/bin:${GOROOT}/bin:/opt/commitlint/node_modules/.bin:${PATH}" COPY build.env / @@ -26,16 +26,17 @@ RUN source /build.env \ git \ make \ gcc \ + findutils \ librados-devel \ librbd-devel \ rubygems \ ShellCheck \ - codespell \ + codespell \ yamllint \ npm \ diffutils \ - python3-prettytable \ - pylint \ + python3-prettytable \ + pylint \ && dnf -y update \ && dnf -y clean all \ && gem install mdl \