Skip to content

Commit 6266119

Browse files
committed
Install Go 1.20 for oss-fuzz
Signed-off-by: Stefan Prodan <stefan.prodan@gmail.com>
1 parent 2928480 commit 6266119

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tests/fuzz/Dockerfile.builder

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
FROM gcr.io/oss-fuzz-base/base-builder-go
22

3+
RUN wget https://go.dev/dl/go1.20.5.linux-amd64.tar.gz \
4+
&& mkdir temp-go \
5+
&& rm -rf /root/.go/* \
6+
&& tar -C temp-go/ -xzf go1.20.5.linux-amd64.tar.gz \
7+
&& mv temp-go/go/* /root/.go/
8+
39
ENV SRC=$GOPATH/src/github.com/fluxcd/source-controller
410
ENV FLUX_CI=true
511

0 commit comments

Comments
 (0)