acrn-hypervisor/hypervisor/.travis-dockerfiles/Dockerfile.debian8
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

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"]