Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
smeisler authored Sep 9, 2024
1 parent 78254fc commit 5810f97
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,15 @@ RUN cd /opt/art \
&& curl -fsSL https://osf.io/73h5s/download \
| tar xz --strip-components 1

# Install Workbench
RUN mkdir /opt/workbench && \
curl -sSLO https://www.humanconnectome.org/storage/app/media/workbench/workbench-linux64-v1.5.0.zip && \
unzip workbench-linux64-v1.5.0.zip -d /opt && \
rm workbench-linux64-v1.5.0.zip && \
rm -rf /opt/workbench/libs_linux64_software_opengl /opt/workbench/plugins_linux64
ENV PATH="/opt/workbench/bin_linux64:$PATH" \
LD_LIBRARY_PATH="/opt/workbench/lib_linux64:$LD_LIBRARY_PATH"

# Unless otherwise specified each process should only use one thread - nipype
# will handle parallelization
ENV \
Expand Down

0 comments on commit 5810f97

Please sign in to comment.