From d5f6f24a2bd0c46ec1121a27e8ee6415a7b465a8 Mon Sep 17 00:00:00 2001 From: Nico Huber Date: Tue, 23 Aug 2022 18:46:02 +0200 Subject: manibuilder/alpine: Disable TLS verification for Git commands Pull the `ca-certificates` package but also 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: I38c2404c50c97f3ae38fad602f587ce25719a6f3 Signed-off-by: Nico Huber Reviewed-on: https://review.coreboot.org/c/flashrom/+/66984 Tested-by: build bot (Jenkins) Reviewed-by: Angel Pons Reviewed-by: Felix Singer --- util/manibuilder/Dockerfile.alpine | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/util/manibuilder/Dockerfile.alpine b/util/manibuilder/Dockerfile.alpine index 63d4ba38..35d787af 100644 --- a/util/manibuilder/Dockerfile.alpine +++ b/util/manibuilder/Dockerfile.alpine @@ -3,9 +3,10 @@ FROM manibase RUN \ adduser -D mani mani && \ apk update && \ - apk add build-base linux-headers git ccache \ + apk add ca-certificates build-base linux-headers git ccache \ pciutils-dev libusb-compat-dev libusb-dev +ENV GIT_SSL_NO_VERIFY=1 USER mani RUN \ cd && \ -- cgit v1.2.3