Update Dockerfile (#3614)

This commit is contained in:
Abhishek Arya 2020-04-10 16:11:38 -07:00 committed by GitHub
parent 07322d0b31
commit 1c4b1d71f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -40,8 +40,9 @@ ENV PATH $PATH:/root/.go/bin:$GOPATH/bin
# Dependency of go-fuzz.
RUN go get golang.org/x/tools/go/packages
# go-fuzz-build is the tool that instruments Go files.
# go*-fuzz-build is the tool that instruments Go files.
RUN go get github.com/dvyukov/go-fuzz/go-fuzz-build
RUN go get github.com/mdempsky/go114-fuzz-build
# Default build flags for various sanitizers.
ENV SANITIZER_FLAGS_address "-fsanitize=address -fsanitize-address-use-after-scope"