From 0707d0c86ea09f37923955b034d517c2ffb55f06 Mon Sep 17 00:00:00 2001 From: Matthew Defenderfer <mdefende@uab.edu> Date: Fri, 4 Oct 2024 13:45:07 -0500 Subject: [PATCH] change miniconda version to be based on python 3.8 to fix error with pinned python 3.12.* dependency --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8190e05..995b7e4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -47,9 +47,9 @@ RUN git clone --branch v3.3.0 https://github.com/soedinglab/hh-suite.git /tmp/hh # Install Miniconda package manager. RUN wget -q -P /tmp \ - https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh \ - && bash /tmp/Miniconda3-latest-Linux-x86_64.sh -b -p /opt/conda \ - && rm /tmp/Miniconda3-latest-Linux-x86_64.sh + https://repo.anaconda.com/miniconda/Miniconda3-py38_23.11.0-2-Linux-x86_64.sh \ + && bash /tmp/Miniconda3-py38_23.11.0-2-Linux-x86_64.sh -b -p /opt/conda \ + && rm /tmp/Miniconda3-py38_23.11.0-2-Linux-x86_64.sh # Install conda packages. ENV PATH="/opt/conda/bin:$PATH" -- GitLab