forked from corticometrics/fs-docker
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdockerfile
More file actions
18 lines (13 loc) · 715 Bytes
/
dockerfile
File metadata and controls
18 lines (13 loc) · 715 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
FROM pwighton/petsurfer:7.2.0
RUN apt-get update -qq \
&& apt-get install -y -q --no-install-recommends graphviz git
RUN git clone --branch main https://github.com/openneuropet/derivatives.git /opt/openneuropet-derivatives
RUN git clone --branch add_pet_freesurfer https://github.com/mnoergaard/nipype.git /opt/nipype \
&& cd /opt/nipype \
&& pip install -e .
RUN git clone --branch main https://github.com/openneuropet/PET_pipelines.git /opt/pet-pipelines \
&& cd /opt/pet-pipelines/pet_nipype \
&& pip install -e .
# rename the build-stamp because it throws errors when nipype tries to parse it
# todo: fix
RUN mv ${FREESURFER_HOME}/build-stamp.txt ${FREESURFER_HOME}/build-stamp-tmp.txt