Sha256: ac1d86c6ecdb82259ba56c822c5b0f482cf9d70579195e2b82c6c2783fff4bcb

Contents?: true

Size: 683 Bytes

Versions: 6

Compression:

Stored size: 683 Bytes

Contents

FROM debian:jessie

RUN apt-get update && apt-get install -y \
  build-essential autoconf libtool \
  git \
  pkg-config \
  && apt-get clean

RUN apt-get install -y \
  cmake \
  gdb \
  valgrind \
  python3

RUN apt-get install -y \
  wget \
  clang

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 apt-get install -y man

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 apt-get install -y clang-format-3.5

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
commonmarker-0.16.4 ext/commonmarker/cmark/tools/Dockerfile
commonmarker-0.16.1 ext/commonmarker/cmark/tools/Dockerfile
commonmarker-0.16.2 ext/commonmarker/cmark/tools/Dockerfile
commonmarker-0.16.3 ext/commonmarker/cmark/tools/Dockerfile
commonmarker-0.16.0 ext/commonmarker/cmark/tools/Dockerfile
commonmarker-0.15.0 ext/commonmarker/cmark/tools/Dockerfile