1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-04-28 07:23:43 +02:00

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 <nico.h@gmx.de>
Reviewed-on: https://review.coreboot.org/c/flashrom/+/66984
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-by: Felix Singer <felixsinger@posteo.net>
This commit is contained in:
Nico Huber 2022-08-23 18:46:02 +02:00 committed by Felix Singer
parent 7bb55f1c36
commit d5f6f24a2b

View File

@ -3,9 +3,10 @@ FROM manibase
RUN \ RUN \
adduser -D mani mani && \ adduser -D mani mani && \
apk update && \ 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 pciutils-dev libusb-compat-dev libusb-dev
ENV GIT_SSL_NO_VERIFY=1
USER mani USER mani
RUN \ RUN \
cd && \ cd && \