We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f316d5 commit dc55d0eCopy full SHA for dc55d0e
azure-pipelines/docker/bionic
@@ -25,7 +25,9 @@ RUN apt-get update && \
25
26
FROM apt AS mbedtls
27
RUN cd /tmp && \
28
- curl --location --silent https://tls.mbed.org/download/mbedtls-2.16.2-apache.tgz | \
+ curl --location http://secure.globalsign.com/cacert/gsrsaovsslca2018.crt | openssl x509 -inform der -out /tmp/cacert.pem && \
29
+ curl --location https://curl.haxx.se/ca/cacert.pem >> /tmp/cacert.pem && \
30
+ curl --location --silent https://tls.mbed.org/download/mbedtls-2.16.2-apache.tgz --cacert /tmp/cacert.pem | \
31
tar -xz && \
32
cd mbedtls-2.16.2 && \
33
scripts/config.pl set MBEDTLS_MD4_C 1 && \
0 commit comments