Dockerfile (437B)
1 FROM gcr.io/oss-fuzz-base/base-builder:v1 2 RUN apt-get update && apt-get install -y \ 3 automake \ 4 autopoint \ 5 cmake \ 6 git \ 7 python3-pip \ 8 pkg-config \ 9 # Install the sanitizers 10 libasan4 \ 11 liblsan0 \ 12 libtsan0 \ 13 libubsan1 \ 14 openssh-client 15 16 17 RUN pip3 install meson ninja 18 19 RUN git clone --depth 1 https://github.com/randombit/botan.git 20 COPY . $SRC/spank-olm 21 22 WORKDIR $SRC/spank-olm 23 COPY ./.clusterfuzzlite/build.sh $SRC/