From d2b04549023c9dc00745131b4da083c09b0f7b16 Mon Sep 17 00:00:00 2001 From: Rehan Khan Date: Mon, 23 Sep 2024 10:31:03 +0530 Subject: [PATCH] Fixed installation of argo in Dockerfile Signed-off-by: Rehan Khan --- backend/Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/backend/Dockerfile b/backend/Dockerfile index cc56aea320ea..fa00a150a1ef 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -36,7 +36,6 @@ RUN python3 -m pip install -r requirements.txt --no-cache-dir # Downloading Argo CLI so that the samples are validated ENV ARGO_VERSION v3.4.17 -RUN curl -sLO https://github.com/argoproj/argo-workflows/releases/download/${ARGO_VERSION}/argo-linux-amd64.gz && \ #Support s390x and ppc64le RUN ARCH=$(uname -m); \ if [ "$ARCH" = "x86_64" ]; then \