acrn-hypervisor/.travis-dockerfiles/Dockerfile.centos7
Geoffroy Van Cutsem b8b2d037c3 Enable Travis CI for all combinations
Enable the Travis CI testing for all combinations of variables
that can be set at compile-time. I.e. RELEASE={0|1} and
PLATFORM={0|1}

Signed-off-by: Geoffroy Van Cutsem <geoffroy.vancutsem@intel.com>
2018-04-06 22:28:46 +08: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"]