From 67bd4a43c2c21d179b8d385871fc4b8530c6d91c Mon Sep 17 00:00:00 2001 From: Taylor Salo Date: Tue, 26 Sep 2023 13:59:15 -0400 Subject: [PATCH] Try using pip. --- Dockerfile | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4bf30b1..b47ac2b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -84,18 +84,19 @@ ENV PATH="/usr/local/miniconda/bin:$PATH" \ # Install basic Python dependencies for ASLPrep conda environment. # The ASLPrep Dockerfile will install more tailored dependencies. RUN conda install -y \ - python=3.8 \ + python=3.9 \ conda-build \ - pip=23 \ + pip=23 ; \ + sync && \ + pip install \ matplotlib \ mkl=2021.2 \ mkl-service=2.3 \ libxml2=2.9.8 \ libxslt=1.1.32 \ graphviz=2.40.1 \ - zlib \ - --channel conda-forge ; \ - sync && \ + zlib ; \ + sync && \ chmod -R a+rX /usr/local/miniconda; sync && \ chmod +x /usr/local/miniconda/bin/*; sync && \ conda build purge-all; sync && \