diff --git a/Dockerfile b/Dockerfile index 73030e6..64f6e45 100644 --- a/Dockerfile +++ b/Dockerfile @@ -70,9 +70,9 @@ ENV OS="Linux" \ FIX_VERTEX_AREA="" # Install miniconda -RUN curl -sSLO https://repo.continuum.io/miniconda/Miniconda3-py38_4.9.2-Linux-x86_64.sh && \ - bash Miniconda3-py38_4.9.2-Linux-x86_64.sh -b -p /usr/local/miniconda && \ - rm Miniconda3-py38_4.9.2-Linux-x86_64.sh +RUN curl -sSLO https://repo.continuum.io/miniconda/Miniconda3-py310_23.10.0-1-Linux-x86_64.sh && \ + bash Miniconda3-py310_23.10.0-1-Linux-x86_64.sh -b -p /usr/local/miniconda && \ + rm Miniconda3-py310_23.10.0-1-Linux-x86_64.sh # Set CPATH for packages relying on compiled libs (e.g. indexed_gzip) ENV PATH="/usr/local/miniconda/bin:$PATH" \ @@ -96,7 +96,7 @@ RUN conda install -y \ pip install \ matplotlib \ requests \ - templateflow~=0.8.1 ; \ + templateflow ; \ sync && \ chmod -R a+rX /usr/local/miniconda; sync && \ chmod +x /usr/local/miniconda/bin/*; sync && \