mirror of https://github.com/google/oss-fuzz.git
tailscale: build with Go 1.20.1 (#9729)
Fixes https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=55690 Signed-off-by: AdamKorcz <adam@adalogics.com>
This commit is contained in:
parent
287946ac26
commit
67171ebea0
|
@ -15,6 +15,13 @@
|
|||
################################################################################
|
||||
|
||||
FROM gcr.io/oss-fuzz-base/base-builder-go
|
||||
RUN apt-get update && apt-get install -y wget
|
||||
RUN git clone --depth 1 https://github.com/tailscale/tailscale
|
||||
RUN wget https://go.dev/dl/go1.20.1.linux-amd64.tar.gz \
|
||||
&& mkdir temp-go \
|
||||
&& rm -rf /root/.go/* \
|
||||
&& tar -C temp-go/ -xzf go1.20.1.linux-amd64.tar.gz \
|
||||
&& mv temp-go/go/* /root/.go/
|
||||
|
||||
COPY build.sh $SRC/
|
||||
WORKDIR $SRC/tailscale
|
||||
|
|
Loading…
Reference in New Issue