From baf4ecbdf48474a1fdbde7a946e7632dbfc29e5e Mon Sep 17 00:00:00 2001 From: Taylor Salo Date: Tue, 25 Jul 2023 15:25:55 -0400 Subject: [PATCH] Update Dockerfile --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5279b5d..12f642d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -83,8 +83,6 @@ ENV PATH="/usr/local/miniconda/bin:$PATH" \ # Install Python dependencies RUN conda \ - --channel conda-forge \ - --channel https://fsl.fmrib.ox.ac.uk/fsldownloads/fslconda/public/ \ install -y \ python=3.10 \ conda-build \ @@ -103,7 +101,9 @@ RUN conda \ libxml2=2.9.8 \ libxslt=1.1.32 \ graphviz=2.40.1 \ - zlib; \ + zlib \ + --channel conda-forge \ + --channel https://fsl.fmrib.ox.ac.uk/fsldownloads/fslconda/public/ ; \ sync && \ chmod -R a+rX /usr/local/miniconda; sync && \ chmod +x /usr/local/miniconda/bin/*; sync && \