-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
771dc79
commit ea58736
Showing
2 changed files
with
44 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ LABEL maintainer="<[email protected]>" | |
ENV DCM2NIIXTAG v1.0.20230411 | ||
|
||
#heudiconv version: | ||
ENV HEUDICONVTAG v0.13.1 | ||
ENV HEUDICONVTAG unstacked_dcm | ||
|
||
#bids validator version: | ||
ENV BIDSTAG 1.9.7 | ||
|
@@ -37,9 +37,22 @@ RUN apt-get update -qq \ | |
&& apt-get install -y -q --no-install-recommends \ | ||
python3=3.9.2-3 \ | ||
python3-pip=20.3.4-4+deb11u1 \ | ||
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* \ | ||
&& pip install --no-cache-dir heudiconv==${HEUDICONVTAG} | ||
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* | ||
|
||
RUN apt-get update -qq \ | ||
&& apt-get install -y -q --no-install-recommends \ | ||
git \ | ||
python3-setuptools \ | ||
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* \ | ||
&& git clone https://github.com/AlanKuurstra/heudiconv.git /src/heudiconv \ | ||
&& git -C /src/heudiconv checkout ${HEUDICONVTAG} | ||
WORKDIR /src/heudiconv | ||
RUN python3 -m pip install --no-cache-dir -r /src/heudiconv/requirements.txt \ | ||
&& python3 -m pip install --no-cache-dir versioningit \ | ||
&& python3 /src/heudiconv/setup.py install | ||
|
||
# install pybruker for cfmm_bruker heuristic | ||
RUN python3 -m pip install --no-cache-dir pybruker --index-url https://gitlab.com/api/v4/projects/29466867/packages/pypi/simple | ||
|
||
# install BIDS Validator | ||
RUN apt-get update -qq \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters