1FROM ubuntu:rolling 2 3RUN apt-get -y update && apt-get install -y \ 4 gcc \ 5 git \ 6 make \ 7 pkg-config \ 8 libipt-dev \ 9 libunwind8-dev \ 10 binutils-dev \ 11&& rm -rf /var/lib/apt/lists/* && rm -rf /honggfuzz 12 13RUN git clone --depth=1 https://github.com/google/honggfuzz.git 14 15WORKDIR /honggfuzz 16 17RUN make && cp /honggfuzz/honggfuzz /bin 18