From 380cf4b6fdea5abed16d30f539dad0422f7ae990 Mon Sep 17 00:00:00 2001 From: Guido Vranken Date: Wed, 12 Apr 2023 20:57:27 +0200 Subject: [PATCH] [openssl] Fix build (#10063) Fixes the OpenSSL build by downloading the corpora submodule. Fixes https://github.com/openssl/openssl/issues/20712 --- projects/openssl/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/projects/openssl/Dockerfile b/projects/openssl/Dockerfile index e59530ca7..74e2fa576 100644 --- a/projects/openssl/Dockerfile +++ b/projects/openssl/Dockerfile @@ -17,6 +17,7 @@ FROM gcr.io/oss-fuzz-base/base-builder RUN apt-get update && apt-get install -y make RUN git clone --depth 1 https://github.com/openssl/openssl.git +RUN cd $SRC/openssl/ && git submodule update --init fuzz/corpora RUN git clone --depth 1 --branch OpenSSL_1_1_1-stable https://github.com/openssl/openssl.git openssl111 RUN git clone --depth 1 --branch openssl-3.0 https://github.com/openssl/openssl.git openssl30 WORKDIR openssl