mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-09-28 20:16:09 +00:00
Signed-off-by: Geoffroy Van Cutsem <geoffroy.vancutsem@intel.com> Signed-off-by: T <shrmrf@users.noreply.github.com>
13 lines
299 B
Docker
13 lines
299 B
Docker
FROM clearlinux:base
|
|
|
|
MAINTAINER shrmrf "https://github.com/shrmrf"
|
|
|
|
# Install packages for building acrn
|
|
# RUN swupd update
|
|
RUN swupd bundle-add os-core-dev
|
|
|
|
RUN git config --global http.sslVerify false
|
|
|
|
COPY . /root/acrn-hypervisor
|
|
RUN cd /root/acrn-hypervisor; make clean && make PLATFORM=uefi
|