Add 'findutils' to Fedora-based Docker images

The 'find' command was not installed in our minimal Fedora 26
and 27-based Docker images. This resulted in a non-fatal error
when performing a 'make clean'. This commit adds this utility
(available in the 'findutils' package).

Signed-off-by: Geoffroy Van Cutsem <geoffroy.vancutsem@intel.com>
This commit is contained in:
Geoffroy Van Cutsem 2018-04-09 14:16:32 +02:00 committed by Jack Ren
parent 473f222dce
commit e479924890
2 changed files with 2 additions and 0 deletions

View File

@ -6,6 +6,7 @@ RUN dnf -y install gcc \
git \ git \
make \ make \
vim \ vim \
findutils \
libuuid-devel \ libuuid-devel \
openssl-devel \ openssl-devel \
libpciaccess-devel \ libpciaccess-devel \

View File

@ -6,6 +6,7 @@ RUN dnf -y install gcc \
git \ git \
make \ make \
vim \ vim \
findutils \
libuuid-devel \ libuuid-devel \
openssl-devel \ openssl-devel \
libpciaccess-devel \ libpciaccess-devel \