From 5a7ccc87b1915864c507995deb5b58a847ffb71e Mon Sep 17 00:00:00 2001 From: Geoffroy Van Cutsem Date: Tue, 10 Jul 2018 18:24:26 +0200 Subject: [PATCH] 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 --- .travis-dockerfiles/Dockerfile.clearlinux | 3 --- 1 file changed, 3 deletions(-) diff --git a/.travis-dockerfiles/Dockerfile.clearlinux b/.travis-dockerfiles/Dockerfile.clearlinux index a238cdaa8..695526dd2 100644 --- a/.travis-dockerfiles/Dockerfile.clearlinux +++ b/.travis-dockerfiles/Dockerfile.clearlinux @@ -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"]