From 7d09ce7d0f3e95c1e46d3135f685a86b144129bd Mon Sep 17 00:00:00 2001 From: AdamKorcz <44787359+AdamKorcz@users.noreply.github.com> Date: Sat, 26 Nov 2022 23:07:25 +0000 Subject: [PATCH] argo: clone in Dockerfile instead of build script (#9075) Signed-off-by: AdamKorcz Signed-off-by: AdamKorcz --- projects/argo/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/projects/argo/Dockerfile b/projects/argo/Dockerfile index a330b4726..3349b1b4a 100644 --- a/projects/argo/Dockerfile +++ b/projects/argo/Dockerfile @@ -15,10 +15,12 @@ ################################################################################ FROM gcr.io/oss-fuzz-base/base-builder-go -RUN apt-get update && apt-get install -y wget +RUN apt-get update && apt-get install -y wget zip RUN git clone --depth 1 https://github.com/argoproj/argo-cd RUN git clone --depth 1 https://github.com/argoproj/argo-workflows RUN git clone --depth 1 https://github.com/argoproj/argo-events +RUN git clone --depth 1 https://github.com/argoproj/gitops-engine +RUN git clone --depth 1 https://github.com/argoproj/argo-rollouts RUN git clone --depth 1 https://github.com/cncf/cncf-fuzzing RUN wget https://github.com/facebook/zstd/releases/download/v1.4.2/zstd-1.4.2.tar.gz && \ tar xzf zstd-1.4.2.tar.gz && \