We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd2aeed commit b54cb11Copy full SHA for b54cb11
projects/kubernetes/Dockerfile
@@ -22,6 +22,11 @@ RUN git clone --depth 1 https://github.com/dvyukov/go-fuzz-corpus
22
RUN git clone --depth 1 https://github.com/kubernetes/kops
23
RUN git clone --depth 1 https://github.com/cncf/cncf-fuzzing
24
RUN git clone --depth 1 https://github.com/AdamKorcz/instrumentation
25
+RUN git clone --depth 1 https://github.com/AdamKorcz/go-118-fuzz-build --branch=november-backup
26
+RUN wget https://go.dev/dl/go1.23.4.linux-amd64.tar.gz \
27
+ && mkdir temp-go \
28
+ && rm -rf /root/.go/* \
29
+ && tar -C temp-go/ -xzf go1.23.4.linux-amd64.tar.gz \
30
+ && mv temp-go/go/* /root/.go/
31
WORKDIR $SRC/
-
32
COPY build.sh $SRC/
0 commit comments