github.com/SagerNet/gvisor@v0.0.0-20210707092255-7731c139d75c/images/syzkaller/Dockerfile (about) 1 FROM gcr.io/syzkaller/env 2 3 # This image is mostly for investigating syzkaller crashes, so let's install 4 # developer tools. 5 RUN apt update && apt install -y git vim strace gdb procps 6 7 WORKDIR /syzkaller/gopath/src/github.com/google/syzkaller 8 9 RUN git init . && git remote add origin https://github.com/google/syzkaller && git fetch origin && git checkout origin/master && make 10 11 ENTRYPOINT ./bin/syz-manager --config /tmp/syzkaller/syzkaller.cfg