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>
This commit is contained in:
Geoffroy Van Cutsem 2018-07-10 18:24:26 +02:00 committed by Jack Ren
parent 4dc39fdb8e
commit 5a7ccc87b1

View File

@ -5,9 +5,6 @@ RUN swupd bundle-add -b os-clr-on-clr python3-basic
RUN pip3 install kconfiglib
RUN mkdir -p /usr/local/bin
RUN git config --global http.sslVerify false
WORKDIR /root/acrn
CMD ["/bin/bash"]