From 598aefc066992af50f96f58a159f877978c09d99 Mon Sep 17 00:00:00 2001 From: T-Y89 <0809taikiyamashita@gmail.com> Date: Fri, 25 Oct 2024 10:28:42 +0900 Subject: [PATCH] chore(dockerfile): remove insecure Git SSL verification configuration Removed the line disabling SSL verification for Git in the Dockerfile. This change enhances security by ensuring SSL verification is enabled during system tests. --- Dockerfile.system-test | 1 - 1 file changed, 1 deletion(-) diff --git a/Dockerfile.system-test b/Dockerfile.system-test index 7b2c728..83668cb 100644 --- a/Dockerfile.system-test +++ b/Dockerfile.system-test @@ -40,7 +40,6 @@ RUN gem install bundler -v 2.5.18 && \ echo 'gem: --no-document' >> ~/.gemrc && \ cp ~/.gemrc /etc/gemrc && \ chmod uog+r /etc/gemrc && \ - git config --global http.sslVerify false && \ bundle config --global build.nokogiri --use-system-libraries && \ bundle config --global jobs 4 && \ bundle install && \