Skip to content

Commit 790056e

Browse files
authored
Merge pull request #14 from alexlicohen/patch-3
Added FSL-core from the BIDS-Apps templates
2 parents e83785c + f78d91f commit 790056e

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

Dockerfile

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,27 @@ RUN curl -sL https://deb.nodesource.com/setup_6.x | bash -
3232
RUN apt-get install -y nodejs
3333
RUN npm install -g bids-validator@0.19.8
3434

35+
RUN apt-get update && \
36+
apt-get install -y curl && \
37+
curl -sSL http://neuro.debian.net/lists/trusty.us-ca.full >> /etc/apt/sources.list.d/neurodebian.sources.list && \
38+
apt-key adv --recv-keys --keyserver hkp://pgp.mit.edu:80 0xA5D32F012649A5A9 && \
39+
apt-get update && \
40+
apt-get remove -y curl && \
41+
apt-get install -y fsl-core && \
42+
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
43+
44+
45+
# Configure environment
46+
ENV FSLDIR=/usr/share/fsl/5.0
47+
ENV FSLOUTPUTTYPE=NIFTI_GZ
48+
ENV PATH=/usr/lib/fsl/5.0:$PATH
49+
ENV FSLMULTIFILEQUIT=TRUE
50+
ENV POSSUMDIR=/usr/share/fsl/5.0
51+
ENV LD_LIBRARY_PATH=/usr/lib/fsl/5.0:$LD_LIBRARY_PATH
52+
ENV FSLTCLSH=/usr/bin/tclsh
53+
ENV FSLWISH=/usr/bin/wish
54+
ENV FSLOUTPUTTYPE=NIFTI_GZ
55+
3556
ENV OS Linux
3657
ENV FS_OVERRIDE 0
3758
ENV FIX_VERTEX_AREA=

0 commit comments

Comments
 (0)