mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-07-16 16:32:51 +00:00
* Add Fedora 28 and Ubuntu 18.04 Dockerfile * Add new build dependencies (for the ACRN tools) * Change default Fedora version to 28 Signed-off-by: Geoffroy Van Cutsem <geoffroy.vancutsem@intel.com>
20 lines
527 B
Docker
20 lines
527 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 \
|
|
libsystemd-dev \
|
|
libevent-dev \
|
|
libxml2-dev \
|
|
libusb-1.0-0-dev \
|
|
&& apt-get clean
|
|
|
|
WORKDIR /root/acrn
|
|
|
|
CMD ["/bin/bash"]
|