From 4540e32368c387ba8447ecc7f7ce96d9fa3be461 Mon Sep 17 00:00:00 2001 From: Catena cyber <35799796+catenacyber@users.noreply.github.com> Date: Mon, 15 Feb 2021 18:34:54 +0100 Subject: [PATCH] Use upstream repo for go-sqlite3 project (#5203) --- projects/go-sqlite3/Dockerfile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/projects/go-sqlite3/Dockerfile b/projects/go-sqlite3/Dockerfile index e948b558b..f1b10e165 100644 --- a/projects/go-sqlite3/Dockerfile +++ b/projects/go-sqlite3/Dockerfile @@ -15,9 +15,7 @@ ################################################################################ FROM gcr.io/oss-fuzz-base/base-builder -# TODO use upstream repo -# RUN go get -t github.com/mattn/go-sqlite3 -RUN git clone --branch fuzz --depth 1 http://github.com/catenacyber/go-sqlite3 $GOPATH/src/github.com/mattn/go-sqlite3 +RUN git clone --depth 1 http://github.com/mattn/go-sqlite3 $GOPATH/src/github.com/mattn/go-sqlite3 -COPY build.sh fuzz*.go $SRC/ +COPY build.sh $SRC/ WORKDIR $SRC/