From 5ea836ca0d71de9907ed70761eaa61d009556259 Mon Sep 17 00:00:00 2001 From: vavuthu Date: Fri, 19 Jul 2024 12:35:39 +0530 Subject: [PATCH] use silent and local for curl downloads Signed-off-by: vavuthu --- Docker_files/ocsci_container/Containerfile.ci | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Docker_files/ocsci_container/Containerfile.ci b/Docker_files/ocsci_container/Containerfile.ci index f89b3aa23b0..1eb509af96e 100644 --- a/Docker_files/ocsci_container/Containerfile.ci +++ b/Docker_files/ocsci_container/Containerfile.ci @@ -34,7 +34,7 @@ RUN curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/s && chmod +x kubectl \ && mv kubectl /usr/local/bin/ -RUN curl https://mirror.openshift.com/pub/openshift-v4/clients/ocp/latest/openshift-client-linux.tar.gz | tar -C /usr/local/bin -zxvf - oc +RUN curl -sL https://mirror.openshift.com/pub/openshift-v4/clients/ocp/latest/openshift-client-linux.tar.gz | tar -C /usr/local/bin -zxvf - oc RUN dnf install -y --nodocs python39 git jq rsync make \ && dnf clean all \