aboutsummaryrefslogtreecommitdiffhomepage
path: root/projects/cryptofuzz/Dockerfile
diff options
context:
space:
mode:
authorGravatar Guido Vranken <guidovranken@users.noreply.github.com>2019-05-14 18:45:13 +0200
committerGravatar Kostya Serebryany <kcc@google.com>2019-05-14 09:45:13 -0700
commit3d4e351c0b187c8981d4c241a9226ccdb20e1342 (patch)
treeb6e4d6b3c6e50e7368b2c4d1ff79c99955ff4293 /projects/cryptofuzz/Dockerfile
parent3df4e1452039b181b160c9d6460cc69c64701aae (diff)
[cryptofuzz] Add Crypto++ and libgcrypt (#2401)
Diffstat (limited to 'projects/cryptofuzz/Dockerfile')
-rw-r--r--projects/cryptofuzz/Dockerfile5
1 files changed, 4 insertions, 1 deletions
diff --git a/projects/cryptofuzz/Dockerfile b/projects/cryptofuzz/Dockerfile
index 6d369e24..2d1178b0 100644
--- a/projects/cryptofuzz/Dockerfile
+++ b/projects/cryptofuzz/Dockerfile
@@ -17,7 +17,7 @@
FROM gcr.io/oss-fuzz-base/base-builder
MAINTAINER guidovranken@gmail.com
-RUN apt-get update && apt-get install -y software-properties-common python-software-properties make autoconf automake libtool build-essential cmake libboost-all-dev
+RUN apt-get update && apt-get install -y software-properties-common python-software-properties make autoconf automake libtool build-essential cmake libboost-all-dev wget
# BoringSSL needs Go to build
RUN add-apt-repository -y ppa:gophers/archive && apt-get update && apt-get install -y golang-1.9-go
@@ -31,5 +31,8 @@ RUN git clone --depth 1 https://boringssl.googlesource.com/boringssl
RUN git clone --depth 1 https://github.com/libressl-portable/portable libressl
RUN cd $SRC/libressl && ./update.sh
RUN git clone --depth 1 https://github.com/jedisct1/libsodium.git
+RUN git clone --depth 1 https://github.com/weidai11/cryptopp/
+RUN git clone --depth 1 https://dev.gnupg.org/source/libgcrypt.git
+RUN wget https://gnupg.org/ftp/gcrypt/libgpg-error/libgpg-error-1.36.tar.bz2
COPY build.sh $SRC/