Dockerfiles: add Python3 and kconfiglib build dependency

This adds Python3 and the 'kconfiglib' tool to all Dockerfiles.
This is required in order to build (and/or configure) the ACRN
hypervisor.

It also adds 'findutils' to all Fedora Dockerfiles as both 'find'
and 'xargs' are used in some Makefiles and provided by this package.

Signed-off-by: Geoffroy Van Cutsem <geoffroy.vancutsem@intel.com>
This commit is contained in:
Geoffroy Van Cutsem
2018-06-22 13:18:18 +02:00
committed by lijinxia
parent ad59375dfd
commit b2fa8c5ea0
10 changed files with 63 additions and 18 deletions

View File

@@ -12,8 +12,12 @@ RUN apt-get update \
libevent-dev \
libxml2-dev \
libusb-1.0-0-dev \
python3 \
python3-pip \
&& apt-get clean
RUN pip3 install kconfiglib
WORKDIR /root/acrn
CMD ["/bin/bash"]