mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-09-02 01:16:50 +00:00
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>
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"]
|