From a567559f68ac39f102d276b805c9cf47a2f98fd4 Mon Sep 17 00:00:00 2001 From: Nico Huber Date: Wed, 24 Aug 2022 01:31:10 +0200 Subject: mainbuilder/debian,ubuntu: Disable TLS verification for Git commands Disable certificate verification for Git commands, including those that run during tests. At some point, the `ca-certificates` won't get updates anymore and, ideally, existing docker images will keep working. Change-Id: I8d7dedeb97777d2f1e6e7e69aefb8cc7ca604940 Signed-off-by: Nico Huber Reviewed-on: https://review.coreboot.org/c/flashrom/+/66999 Tested-by: build bot (Jenkins) Reviewed-by: Angel Pons Reviewed-by: Felix Singer --- util/manibuilder/Dockerfile.debian-debootstrap | 1 + util/manibuilder/Dockerfile.ubuntu-debootstrap | 1 + 2 files changed, 2 insertions(+) diff --git a/util/manibuilder/Dockerfile.debian-debootstrap b/util/manibuilder/Dockerfile.debian-debootstrap index ce201f8c6..d2e0eee79 100644 --- a/util/manibuilder/Dockerfile.debian-debootstrap +++ b/util/manibuilder/Dockerfile.debian-debootstrap @@ -10,6 +10,7 @@ RUN \ { apt-get -qqy install libjaylink-dev || true; } && \ apt-get clean +ENV GIT_SSL_NO_VERIFY=1 USER mani RUN \ cd && \ diff --git a/util/manibuilder/Dockerfile.ubuntu-debootstrap b/util/manibuilder/Dockerfile.ubuntu-debootstrap index fe3ad1ea8..f002d9a12 100644 --- a/util/manibuilder/Dockerfile.ubuntu-debootstrap +++ b/util/manibuilder/Dockerfile.ubuntu-debootstrap @@ -23,6 +23,7 @@ RUN \ { apt-get -qqy install libjaylink-dev || true; } && \ apt-get clean +ENV GIT_SSL_NO_VERIFY=1 USER mani RUN \ cd && \ -- cgit v1.2.3