From 7cc0561aad415673f3ca3f15bfd240c75584849e Mon Sep 17 00:00:00 2001 From: MarcoFalke Date: Mon, 31 May 2021 20:28:23 +0200 Subject: [PATCH] opus: Try to fix build issue --- projects/opus/Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/projects/opus/Dockerfile b/projects/opus/Dockerfile index 717b88270..fa1c985b2 100644 --- a/projects/opus/Dockerfile +++ b/projects/opus/Dockerfile @@ -18,6 +18,10 @@ FROM gcr.io/oss-fuzz-base/base-builder RUN apt-get update && apt-get install -y make autoconf automake libtool wget RUN git clone https://gitlab.xiph.org/xiph/opus.git +# Install more recent wget to work around https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=34761 +# "OpenSSL: error:1407742E:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert protocol version" +RUN sed -i -e 's/xenial/bionic/g' /etc/apt/sources.list +RUN apt-get update && apt-get install -y --reinstall wget RUN wget https://opus-codec.org/static/testvectors/opus_testvectors.tar.gz WORKDIR opus COPY build.sh $SRC/