-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDockerfile-3.15.0
More file actions
29 lines (24 loc) · 885 Bytes
/
Dockerfile-3.15.0
File metadata and controls
29 lines (24 loc) · 885 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#
# Author: Marek Zmysłowski mzmyslowski@cycura.com
#
FROM ubuntu:18.04
# Installing dependencies
RUN apt-get update && apt-get install -y wget git make automake gcc python python3 python3-pip
RUN pip3 install setuptools
# Getting the Valgrind source code
WORKDIR /work
RUN wget https://sourceware.org/pub/valgrind/valgrind-3.15.0.tar.bz2
RUN tar jxvf valgrind-3.15.0.tar.bz2
# Getting the Taintgrind source code (it must be downloaded inside valgrind directory)
WORKDIR /work/valgrind-3.15.0
RUN git clone https://github.com/wmkhoo/taintgrind.git
WORKDIR /work/valgrind-3.15.0/taintgrind
RUN git checkout f92b5daa7e4443813bbdc77ffd57b3ad16e4ceef
# Building everything
RUN ./build_taintgrind.sh
# Getting and installing rtaint tool
WORKDIR /work
RUN git clone https://github.com/marekzmyslowski/rtaint.git
WORKDIR /work/rtaint
RUN python3 setup.py install
RUN make -Q ./examples