blob: 9f739d972f42fa11a5c7bf2f80af0ab8869f0cce (
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 --allow-releaseinfo-change && DEBIAN_FRONTEND=noninteractive 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
|