17 lines
373 B
Docker
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"]
|