Skip to content

Commit

Permalink
ci: install findutils in dockerfile.test
Browse files Browse the repository at this point in the history
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 <madhupr007@gmail.com>
  • Loading branch information
Madhu-1 committed Dec 9, 2021
1 parent 7b58502 commit f34aa5b
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions scripts/Dockerfile.test
Original file line number Diff line number Diff line change
Expand Up @@ -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 /

Expand All @@ -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 \
Expand Down

0 comments on commit f34aa5b

Please sign in to comment.