aboutsummaryrefslogtreecommitdiff
path: root/projects/mbedtls
diff options
context:
space:
mode:
authorCatena cyber <35799796+catenacyber@users.noreply.github.com>2019-05-27 03:26:06 +0200
committerOliver Chang <oliverchang@users.noreply.github.com>2019-05-27 11:26:06 +1000
commit6a1aa9ef0c71d86a2e8b5f765c3134238a3068ef (patch)
tree5437998b29e2d80d730d2de59747d7f48e3c5ae1 /projects/mbedtls
parent8e128aa3244535837006dc19050e5a434db22945 (diff)
downloadoss-fuzz-6a1aa9ef0c71d86a2e8b5f765c3134238a3068ef.tar.gz
Mbedtls needs recusive clone now (#2463)
Diffstat (limited to 'projects/mbedtls')
-rw-r--r--projects/mbedtls/Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/projects/mbedtls/Dockerfile b/projects/mbedtls/Dockerfile
index c4ce6b4bb..d0e409dea 100644
--- a/projects/mbedtls/Dockerfile
+++ b/projects/mbedtls/Dockerfile
@@ -18,7 +18,7 @@ FROM gcr.io/oss-fuzz-base/base-builder
#TODO change
MAINTAINER support-mbedtls@arm.com
RUN apt-get update && apt-get install -y make cmake
-RUN git clone --depth 1 https://github.com/ARMmbed/mbedtls.git mbedtls
+RUN git clone --recursive --depth 1 https://github.com/ARMmbed/mbedtls.git mbedtls
RUN git clone --depth 1 https://github.com/google/boringssl.git boringssl
RUN git clone --depth 1 https://github.com/openssl/openssl.git openssl
WORKDIR mbedtls