diff --git a/Dockerfile b/Dockerfile index 20ff7c18..0416971f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,10 +3,10 @@ ARG COLABFOLD_VERSION=1.5.5 FROM nvidia/cuda:${CUDA_VERSION}-base-ubuntu22.04 RUN apt-get update && apt-get install -y wget cuda-nvcc-$(echo $CUDA_VERSION | cut -d'.' -f1,2 | tr '.' '-') --no-install-recommends --no-install-suggests && rm -rf /var/lib/apt/lists/* && \ - wget -qnc https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-Linux-x86_64.sh && \ - bash Mambaforge-Linux-x86_64.sh -bfp /usr/local && \ - mamba config --set auto_update_conda false && \ - rm -f Mambaforge-Linux-x86_64.sh && \ + wget -qnc https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-Linux-x86_64.sh && \ + bash Miniforge3-Linux-x86_64.sh -bfp /usr/local && \ + conda config --set auto_update_conda false && \ + rm -f Miniforge3-Linux-x86_64.sh && \ CONDA_OVERRIDE_CUDA=$(echo $CUDA_VERSION | cut -d'.' -f1,2) mamba create -y -n colabfold -c conda-forge -c bioconda colabfold=$COLABFOLD_VERSION jaxlib==*=cuda* && \ mamba clean -afy