mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-08-19 00:32:30 +00:00
"RUN git config --global http.sslVerify false" was needed with a cloud-based CI system else it failed to clone the repository. The project does not use that cloud-based CI system and hence this workaround (security by-pass) is not needed. Signed-off-by: Geoffroy Van Cutsem <geoffroy.vancutsem@intel.com>
11 lines
180 B
Docker
11 lines
180 B
Docker
# Build container based on Clearlinux
|
|
FROM clearlinux:base
|
|
|
|
RUN swupd bundle-add -b os-clr-on-clr python3-basic
|
|
|
|
RUN pip3 install kconfiglib
|
|
|
|
WORKDIR /root/acrn
|
|
|
|
CMD ["/bin/bash"]
|