File tree Expand file tree Collapse file tree 2 files changed +4
-8
lines changed
Expand file tree Collapse file tree 2 files changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -25,9 +25,7 @@ RUN apt-get update && \
2525
2626FROM apt AS mbedtls
2727RUN cd /tmp && \
28- curl --location --silent --show-error http://secure.globalsign.com/cacert/gsrsaovsslca2018.crt | openssl x509 -inform der -out /tmp/cacert.pem && \
29- curl --location --silent --show-error https://curl.haxx.se/ca/cacert.pem >> /tmp/cacert.pem && \
30- curl --location --silent --show-error https://tls.mbed.org/download/mbedtls-2.16.2-apache.tgz --cacert /tmp/cacert.pem | \
28+ curl --insecure --location --silent --show-error https://tls.mbed.org/download/mbedtls-2.16.2-apache.tgz | \
3129 tar -xz && \
3230 cd mbedtls-2.16.2 && \
3331 scripts/config.pl set MBEDTLS_MD4_C 1 && \
Original file line number Diff line number Diff line change @@ -29,9 +29,7 @@ RUN apt-get update && \
2929
3030FROM apt AS mbedtls
3131RUN cd /tmp && \
32- curl --location --silent --show-error http://secure.globalsign.com/cacert/gsrsaovsslca2018.crt | openssl x509 -inform der -out /tmp/cacert.pem && \
33- curl --location --silent --show-error https://curl.haxx.se/ca/cacert.pem >> /tmp/cacert.pem && \
34- curl --location --silent --show-error https://tls.mbed.org/download/mbedtls-2.16.2-apache.tgz --cacert /tmp/cacert.pem | \
32+ curl --insecure --location --silent --show-error https://tls.mbed.org/download/mbedtls-2.16.2-apache.tgz | \
3533 tar -xz && \
3634 cd mbedtls-2.16.2 && \
3735 scripts/config.pl set MBEDTLS_MD4_C 1 && \
@@ -42,7 +40,7 @@ RUN cd /tmp && \
4240
4341FROM mbedtls AS libssh2
4442RUN cd /tmp && \
45- curl --location --silent --show-error https://www.libssh2.org/download/libssh2-1.8.2.tar.gz | \
43+ curl --insecure -- location --silent --show-error https://www.libssh2.org/download/libssh2-1.8.2.tar.gz | \
4644 tar -xz && \
4745 cd libssh2-1.8.2 && \
4846 CFLAGS=-fPIC cmake -G Ninja -DBUILD_SHARED_LIBS=ON -DCRYPTO_BACKEND=Libgcrypt . && \
@@ -52,7 +50,7 @@ RUN cd /tmp && \
5250
5351FROM libssh2 AS valgrind
5452RUN cd /tmp && \
55- curl --location --silent --show-error https://sourceware.org/pub/valgrind/valgrind-3.15.0.tar.bz2 | \
53+ curl --insecure -- location --silent --show-error https://sourceware.org/pub/valgrind/valgrind-3.15.0.tar.bz2 | \
5654 tar -xj && \
5755 cd valgrind-3.15.0 && \
5856 ./configure && \
You can’t perform that action at this time.
0 commit comments