fix(docker): disable SSL verification for git clone commands in Dockerfiles
Some checks failed
CI Code / Linux (arch) (pull_request) Failing after 2m56s
CI Code / Linux (debian) (pull_request) Failing after 10m53s
CI Code / Linux (ubuntu) (pull_request) Has been cancelled
CI Code / Check coding style (pull_request) Has been cancelled
CI Code / Check spelling (pull_request) Has been cancelled

This commit is contained in:
2025-12-24 18:38:06 +03:00
parent 4c327bcb0c
commit 5e4e28cd13
5 changed files with 8 additions and 8 deletions

View File

@@ -47,7 +47,7 @@ ENV TERM=xterm
RUN mkdir -p /usr/src
WORKDIR /usr/src
RUN git clone https://git.jabber.space/devs/stabber
RUN git clone -c http.sslverify=false https://git.jabber.space/devs/stabber
WORKDIR /usr/src/stabber
RUN ./bootstrap.sh
RUN ./configure --prefix=/usr --disable-dependency-tracking
@@ -56,7 +56,7 @@ RUN make install
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