Sha256: bb751462292986279c7eeecafe5c85706903d0cf26558bf42d5b20ff6aae7f10
Contents?: true
Size: 824 Bytes
Versions: 10
Compression:
Stored size: 824 Bytes
Contents
FROM debian:jessie RUN apt-get update && apt-get install -y \ build-essential \ autoconf \ libtool \ git \ pkg-config \ gdb \ valgrind \ python3 \ wget \ clang \ man \ clang-format-3.5 \ && apt-get clean RUN wget http://lcamtuf.coredump.cx/afl/releases/afl-latest.tgz && \ tar xf afl-latest.tgz && \ cd afl-* && \ make install && \ cd .. && \ rm -rf afl-* RUN wget https://github.com/skvadrik/re2c/releases/download/0.15.3/re2c-0.15.3.tar.gz && \ tar xf re2c-0.15.3.tar.gz && \ cd re2c-* && \ ./configure && \ make install && \ cd .. && \ rm -rf re2c-* RUN wget https://cmake.org/files/v3.8/cmake-3.8.2.tar.gz && \ tar xf cmake-3.8.2.tar.gz && \ cd cmake-* && \ ./bootstrap && \ make install && \ cd .. && \ rm -rf cmake-* RUN apt-get update && apt-get install -y ninja-build
Version data entries
10 entries across 10 versions & 1 rubygems