summaryrefslogtreecommitdiffhomepage
path: root/images/syzkaller/Dockerfile
blob: 9a85ae3453d2a11217fb34c81de1a2382bd75349 (plain)
1
2
3
4
5
6
7
8
9
10
11
FROM gcr.io/syzkaller/env

# This image is mostly for investigating syzkaller crashes, so let's install
# developer tools.
RUN apt update && apt install -y git vim strace gdb procps

WORKDIR  /syzkaller/gopath/src/github.com/google/syzkaller

RUN git init . && git remote add origin https://github.com/google/syzkaller && git fetch origin && git checkout origin/master && make

ENTRYPOINT ./bin/syz-manager --config /tmp/syzkaller/syzkaller.cfg