blob: df6680f40721dc8ae6eaa4c39fed2c5c0a7f309c (
plain)
1
2
3
4
5
6
7
8
9
|
FROM gcr.io/syzkaller/env
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
|