Skip to content

Commit

Permalink
istio: fix broken build (#12868)
Browse files Browse the repository at this point in the history
Signed-off-by: Adam Korczynski <[email protected]>
  • Loading branch information
AdamKorcz authored Dec 18, 2024
1 parent f7a14bc commit 35292ac
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions projects/istio/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@

# Setup the builder for Istio. The standard Go builder is sufficient.
FROM gcr.io/oss-fuzz-base/base-builder-go
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/
RUN git clone --depth 1 https://github.com/istio/istio
COPY build.sh $SRC/
WORKDIR $SRC/istio

0 comments on commit 35292ac

Please sign in to comment.