This repository was archived by the owner on Dec 27, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +18
-11
lines changed Expand file tree Collapse file tree 1 file changed +18
-11
lines changed Original file line number Diff line number Diff line change @@ -85,17 +85,24 @@ RUN export PATH="/opt/miniconda-latest/bin:$PATH" \
85
85
&& conda config --system --prepend channels conda-forge \
86
86
&& conda config --system --set auto_update_conda false \
87
87
&& 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
+
99
106
100
107
RUN sed -i '$isource activate preafq' $ND_ENTRYPOINT
101
108
You can’t perform that action at this time.
0 commit comments