acrn-hypervisor/.travis-dockerfiles/Dockerfile.clearlinux
Geoffroy Van Cutsem 5a7ccc87b1 Dockerfile: remove security by-pass in Clear Linux Dockerfile
"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>
2018-07-11 21:35:31 +08:00

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"]