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 10, 2021
1 parent df1f775 commit ab29428
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 ab29428

Please sign in to comment.