Files
acrn-hypervisor/.travis-dockerfiles/Dockerfile.ubuntu14.04
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
366 B
Docker

# Build container based on Ubuntu 14.04
FROM ubuntu:14.04
# 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"]