mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-08-13 13:56:19 +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>
12 lines
208 B
Docker
12 lines
208 B
Docker
# Build container based on Clearlinux
|
|
FROM clearlinux:base
|
|
|
|
RUN swupd bundle-add os-clr-on-clr
|
|
|
|
RUN mkdir -p /usr/local/bin
|
|
RUN git config --global http.sslVerify false
|
|
|
|
WORKDIR /root/acrn
|
|
|
|
CMD ["/bin/bash"]
|