Skip to content
This repository was archived by the owner on Dec 27, 2022. It is now read-only.

Commit 49560ea

Browse files
committed
wip: dockerfile to add nipype from github
1 parent 7d1ec84 commit 49560ea

File tree

1 file changed

+18
-11
lines changed

1 file changed

+18
-11
lines changed

docker/Dockerfile

Lines changed: 18 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -85,17 +85,24 @@ RUN export PATH="/opt/miniconda-latest/bin:$PATH" \
8585
&& conda config --system --prepend channels conda-forge \
8686
&& conda config --system --set auto_update_conda false \
8787
&& conda config --system --set show_channel_urls true \
88-
&& sync && conda clean -tipsy && sync \
89-
&& conda create -y -q --name preafq
90-
91-
RUN conda install -y -q --name preafq \
92-
-c \
93-
conda-forge \
94-
python=3.6 \
95-
nipype \
96-
dipy \
97-
boto3 \
98-
&& sync && conda clean -tipsy && sync
88+
&& sync && conda clean -tipsy && sync
89+
# && conda create -y -q --name preafq
90+
91+
# RUN conda install -y -q --name preafq \
92+
# -c \
93+
# conda-forge \
94+
# python=3.6 \
95+
# nipype \
96+
# dipy \
97+
# boto3 \
98+
# && sync && conda clean -tipsy && sync
99+
100+
ADD environment.yml environment.yml
101+
RUN apt-get update && apt-get install -y git gcc
102+
RUN conda env create -f environment.yml
103+
104+
#&& sync && conda clean -tipsy && sync
105+
99106

100107
RUN sed -i '$isource activate preafq' $ND_ENTRYPOINT
101108

0 commit comments

Comments
 (0)