From fada16bd6d0316ab84dd6dc7a10992ef1ed39afb Mon Sep 17 00:00:00 2001 From: Michael Vetter Date: Wed, 12 Jan 2022 18:59:39 +0100 Subject: [PATCH] ci: dont verify ssl --- Dockerfile.debian | 2 +- Dockerfile.fedora | 2 +- Dockerfile.ubuntu | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile.debian b/Dockerfile.debian index 83a53294..c7e0300b 100644 --- a/Dockerfile.debian +++ b/Dockerfile.debian @@ -33,7 +33,7 @@ RUN mkdir -p /usr/src/{stabber,libstrophe,profanity} WORKDIR /usr/src #RUN git clone https://github.com/boothj5/stabber -RUN git clone https://github.com/strophe/libstrophe +RUN git clone -c http.sslverify=false https://github.com/strophe/libstrophe #WORKDIR /usr/src/stabber #RUN ./bootstrap.sh diff --git a/Dockerfile.fedora b/Dockerfile.fedora index ec9f4ecf..684794dd 100644 --- a/Dockerfile.fedora +++ b/Dockerfile.fedora @@ -54,7 +54,7 @@ WORKDIR /usr/src WORKDIR /usr/src RUN mkdir -p /usr/src/libstrophe -RUN git clone https://github.com/strophe/libstrophe +RUN git clone -c http.sslverify=false https://github.com/strophe/libstrophe WORKDIR /usr/src/libstrophe RUN ./bootstrap.sh RUN ./configure --prefix=/usr diff --git a/Dockerfile.ubuntu b/Dockerfile.ubuntu index 0cfd7a50..a9ff84b0 100644 --- a/Dockerfile.ubuntu +++ b/Dockerfile.ubuntu @@ -34,7 +34,7 @@ RUN mkdir -p /usr/src/{stabber,libstrophe,profanity} WORKDIR /usr/src #RUN git clone https://github.com/boothj5/stabber -RUN git clone https://github.com/strophe/libstrophe +RUN git clone -c http.sslverify=false https://github.com/strophe/libstrophe # TODO: Re-enable once libmicrohttpd-dev has been updated. #WORKDIR /usr/src/stabber