Fix kubernetes coverage build. (#4687)

This commit is contained in:
Abhishek Arya 2020-11-21 10:55:15 -08:00 committed by GitHub
parent 57ebc0c76a
commit bb8b2fb354
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 4 deletions

View File

@ -16,11 +16,9 @@
FROM gcr.io/oss-fuzz-base/base-builder
ENV GOPATH /gopath
RUN go get github.com/ianlancetaylor/demangle
RUN git clone --depth 1 https://github.com/kubernetes/kubernetes.git /gopath/src/k8s.io/kubernetes
RUN git clone --depth 1 https://github.com/kubernetes/kubernetes.git $GOPATH/src/k8s.io/kubernetes
WORKDIR /gopath/src/k8s.io/kubernetes
WORKDIR $GOPATH/src/k8s.io/kubernetes
COPY build.sh $SRC/build.sh