mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-09-24 18:27:18 +00:00
This is part of the short series of commits that will lead to a unified repository for the ACRN hypervisor, device model and the associated documentation. Signed-off-by: Geoffroy Van Cutsem <geoffroy.vancutsem@intel.com>
11 lines
239 B
Docker
11 lines
239 B
Docker
# Build container based on Clearlinux
|
|
FROM clearlinux:base
|
|
|
|
# python-basic-dev is only there because it gives us
|
|
# the openssl/md5.h header that we need
|
|
RUN swupd bundle-add os-core-dev dev-utils-dev
|
|
|
|
WORKDIR /root/acrn
|
|
|
|
CMD ["/bin/bash"]
|