diff --git a/ci-conda.Dockerfile b/ci-conda.Dockerfile index 2a75850..c4469c2 100644 --- a/ci-conda.Dockerfile +++ b/ci-conda.Dockerfile @@ -29,7 +29,7 @@ SHELL ["/bin/bash", "-euo", "pipefail", "-c"] # Install system packages depending on the LINUX_VER RUN < /etc/apt/apt.conf.d/warnings-as-errors apt-get update apt-get upgrade -y @@ -39,7 +39,7 @@ case "${LINUX_VER}" in wget rm -rf "/var/lib/apt/lists/*" ;; - "centos"* | "rockylinux"*) + "centos"* | "rockylinux"*) yum -y update yum -y install --setopt=install_weak_deps=False \ file \ @@ -49,7 +49,7 @@ case "${LINUX_VER}" in yum-utils yum clean all ;; - *) + *) echo "Unsupported LINUX_VER: ${LINUX_VER}" exit 1 ;; @@ -59,11 +59,11 @@ EOF # Install CUDA packages, only for CUDA 11 (CUDA 12+ should fetch from conda) RUN <