Skip to content

Commit

Permalink
Try using pip.
Browse files Browse the repository at this point in the history
  • Loading branch information
tsalo committed Sep 26, 2023
1 parent f03d36a commit 67bd4a4
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 && \
Expand Down

0 comments on commit 67bd4a4

Please sign in to comment.