aboutsummaryrefslogtreecommitdiff
path: root/projects/libzmq/Dockerfile
diff options
context:
space:
mode:
authorLuca Boccassi <luca.boccassi@gmail.com>2020-06-30 21:22:33 +0100
committerGitHub <noreply@github.com>2020-06-30 13:22:33 -0700
commit0a7380a80a0f7bc8416dc554b66951119365a66d (patch)
tree988fb71e501292943b83995a73d4561b9790c1ee /projects/libzmq/Dockerfile
parent05063afd888a40173816327ac7510a6867626a6f (diff)
downloadoss-fuzz-0a7380a80a0f7bc8416dc554b66951119365a66d.tar.gz
[libzmq] use build script from upstream repository (#4054)
* libzmq: use build script from upstream repository In order to avoid having to send PRs every time we change something, simply maintain the build script in the upstream repository, and change build.sh to a one-line call. * libzmq: clone corpora and dictionary repository
Diffstat (limited to 'projects/libzmq/Dockerfile')
-rw-r--r--projects/libzmq/Dockerfile1
1 files changed, 1 insertions, 0 deletions
diff --git a/projects/libzmq/Dockerfile b/projects/libzmq/Dockerfile
index 40769f294..9299d8c23 100644
--- a/projects/libzmq/Dockerfile
+++ b/projects/libzmq/Dockerfile
@@ -18,6 +18,7 @@ FROM gcr.io/oss-fuzz-base/base-builder
MAINTAINER bluca@debian.org
RUN apt-get update && apt-get install -y make autoconf automake libtool gettext pkg-config build-essential
RUN git clone --depth 1 https://github.com/zeromq/libzmq.git
+RUN git clone --depth 1 https://github.com/zeromq/libzmq-fuzz-corpora.git
RUN git clone --depth 1 -b stable https://github.com/jedisct1/libsodium.git
WORKDIR libzmq
COPY build.sh $SRC/