File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -184,6 +184,16 @@ RUN cd /opt/art \
184
184
&& curl -fsSL https://osf.io/73h5s/download \
185
185
| tar xz --strip-components 1
186
186
187
+ # Install Workbench
188
+ RUN apt-get update && apt-get install -y curl unzip binutils
189
+ RUN mkdir /opt/workbench && \
190
+ curl -sSLO https://www.humanconnectome.org/storage/app/media/workbench/workbench-linux64-v1.5.0.zip && \
191
+ unzip workbench-linux64-v1.5.0.zip -d /opt && \
192
+ rm workbench-linux64-v1.5.0.zip && \
193
+ rm -rf /opt/workbench/libs_linux64_software_opengl /opt/workbench/plugins_linux64
194
+ ENV PATH="/opt/workbench/bin_linux64:$PATH" \
195
+ LD_LIBRARY_PATH="/opt/workbench/lib_linux64:$LD_LIBRARY_PATH"
196
+
187
197
# Unless otherwise specified each process should only use one thread - nipype
188
198
# will handle parallelization
189
199
ENV \
You can’t perform that action at this time.
0 commit comments