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

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