diff --git a/projects/kubernetes/Dockerfile b/projects/kubernetes/Dockerfile index 120760e18..3de456512 100644 --- a/projects/kubernetes/Dockerfile +++ b/projects/kubernetes/Dockerfile @@ -22,6 +22,11 @@ RUN git clone --depth 1 https://github.com/dvyukov/go-fuzz-corpus RUN git clone --depth 1 https://github.com/kubernetes/kops RUN git clone --depth 1 https://github.com/cncf/cncf-fuzzing RUN git clone --depth 1 https://github.com/AdamKorcz/instrumentation +RUN git clone --depth 1 https://github.com/AdamKorcz/go-118-fuzz-build --branch=november-backup +RUN wget https://go.dev/dl/go1.23.4.linux-amd64.tar.gz \ + && mkdir temp-go \ + && rm -rf /root/.go/* \ + && tar -C temp-go/ -xzf go1.23.4.linux-amd64.tar.gz \ + && mv temp-go/go/* /root/.go/ WORKDIR $SRC/ - COPY build.sh $SRC/