acrn-hypervisor/hypervisor/.travis-dockerfiles/Dockerfile.centos7
Geoffroy Van Cutsem f7c72f6328 Move ACRN hypervisor code in dedicated hypervisor/ folder
Prepare the repository to be merged with the content of
acrn-devicemodel and acrn-documentation

Signed-off-by: Geoffroy Van Cutsem <geoffroy.vancutsem@intel.com>
2018-05-10 01:47:16 +02:00

17 lines
373 B
Docker

# Build container based on CentOS 7
FROM centos:centos7
RUN yum -y update; yum clean all
RUN yum -y install gcc \
git \
make \
vim \
libuuid-devel \
openssl-devel \
libpciaccess-devel \
gnu-efi-devel
WORKDIR /root/acrn
CMD ["/bin/bash"]