From 865b0e369cd7060e3fa1a9e99315a754a813f86c Mon Sep 17 00:00:00 2001 From: David Gardner Date: Thu, 5 Oct 2023 06:51:51 -0700 Subject: [PATCH] Remove conflicting condarc file from base image --- ci/scripts/github/common.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ci/scripts/github/common.sh b/ci/scripts/github/common.sh index c60f091336..dd73852e4d 100644 --- a/ci/scripts/github/common.sh +++ b/ci/scripts/github/common.sh @@ -93,6 +93,10 @@ function update_conda_env() { if [[ "${SKIP_CONDA_ENV_UPDATE}" == "" ]]; then rapids-logger "Checking for updates to conda env" + + # Remove default/conflicting channels from base image + rm /opt/conda/.condarc + # Update the packages rapids-mamba-retry env update -n morpheus --prune -q --file ${ENV_YAML} fi