argo: clone in Dockerfile instead of build script (#9075)

Signed-off-by: AdamKorcz <adam@adalogics.com>

Signed-off-by: AdamKorcz <adam@adalogics.com>
This commit is contained in:
AdamKorcz 2022-11-26 23:07:25 +00:00 committed by GitHub
parent 973f4743e6
commit 7d09ce7d0f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -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 && \