Files
acrn-hypervisor/.travis-dockerfiles/Dockerfile.fedora26
Geoffroy Van Cutsem b2fa8c5ea0 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>
2018-06-25 17:30:30 +08:00

26 lines
634 B
Docker

# Build container based on Fedora 26
FROM fedora:26
RUN dnf -y update && dnf clean all
RUN dnf -y install gcc \
git \
make \
vim \
findutils \
libuuid-devel \
openssl-devel \
libpciaccess-devel \
gnu-efi-devel \
systemd-devel \
libxml2-devel \
libevent-devel \
libusbx-devel \
python3 \
python3-pip
RUN pip3 install kconfiglib
WORKDIR /root/acrn
CMD ["/bin/bash"]