mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-09-17 06:49:25 +00:00
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>
18 lines
402 B
Docker
18 lines
402 B
Docker
# Build container based on Fedora 27
|
|
FROM fedora:27
|
|
|
|
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
|
|
|
|
WORKDIR /root/acrn
|
|
|
|
CMD ["/bin/bash"]
|