mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-08-19 00:32:30 +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>
16 lines
358 B
Docker
16 lines
358 B
Docker
# Build container based on Debian 8
|
|
FROM debian:8
|
|
|
|
# Install dependencies.
|
|
RUN apt-get update \
|
|
&& apt-get install -y gcc make vim git \
|
|
gnu-efi \
|
|
libssl-dev \
|
|
libpciaccess-dev \
|
|
uuid-dev \
|
|
&& apt-get clean
|
|
|
|
WORKDIR /root/acrn
|
|
|
|
CMD ["/bin/bash"]
|