-
Notifications
You must be signed in to change notification settings - Fork 295
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
24.1.0 (September 16, 2024) New feature release in the 24.1.x series. Handling of gradient echo fieldmaps is improved. * FIX: Select volumetric dseg.tsv from recent TemplateFlow releases (#3257) * RF: Adapt to less T1w-centric smriprep (#3333) * RF: Use acres over vendored data loader (#3323) * DOC: Add benchmark page (#3312) * MAINT: Move to tox to simplify test/CI setup (#3326) * CI: Fix expected outputs for fieldmaps (#3321)
- Loading branch information
Showing
7 changed files
with
111 additions
and
52 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
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
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 |
---|---|---|
|
@@ -40,7 +40,7 @@ RUN python -m build /src | |
# | ||
|
||
# Utilities for downloading packages | ||
FROM ${BASE_IMAGE} as downloader | ||
FROM ${BASE_IMAGE} AS downloader | ||
# Bump the date to current to refresh curl/certificates/etc | ||
RUN echo "2023.07.20" | ||
RUN apt-get update && \ | ||
|
@@ -53,13 +53,13 @@ RUN apt-get update && \ | |
apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* | ||
|
||
# FreeSurfer 7.3.2 | ||
FROM downloader as freesurfer | ||
FROM downloader AS freesurfer | ||
COPY docker/files/freesurfer7.3.2-exclude.txt /usr/local/etc/freesurfer7.3.2-exclude.txt | ||
RUN curl -sSL https://surfer.nmr.mgh.harvard.edu/pub/dist/freesurfer/7.3.2/freesurfer-linux-ubuntu22_amd64-7.3.2.tar.gz \ | ||
| tar zxv --no-same-owner -C /opt --exclude-from=/usr/local/etc/freesurfer7.3.2-exclude.txt | ||
|
||
# AFNI | ||
FROM downloader as afni | ||
FROM downloader AS afni | ||
# Bump the date to current to update AFNI | ||
RUN echo "2023.07.20" | ||
RUN mkdir -p /opt/afni-latest \ | ||
|
@@ -80,7 +80,7 @@ RUN mkdir -p /opt/afni-latest \ | |
-name "3dvolreg" \) -delete | ||
|
||
# Connectome Workbench 1.5.0 | ||
FROM downloader as workbench | ||
FROM downloader AS 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 && \ | ||
|
@@ -89,13 +89,13 @@ RUN mkdir /opt/workbench && \ | |
strip --remove-section=.note.ABI-tag /opt/workbench/libs_linux64/libQt5Core.so.5 | ||
|
||
# Convert3d 1.4.0 | ||
FROM downloader as c3d | ||
FROM downloader AS c3d | ||
RUN mkdir /opt/convert3d && \ | ||
curl -fsSL --retry 5 https://sourceforge.net/projects/c3d/files/c3d/Experimental/c3d-1.4.0-Linux-gcc64.tar.gz/download \ | ||
| tar -xz -C /opt/convert3d --strip-components 1 | ||
|
||
# Micromamba | ||
FROM downloader as micromamba | ||
FROM downloader AS micromamba | ||
|
||
# Install a C compiler to build extensions when needed. | ||
# traits<6.4 wheels are not available for Python 3.11+, but build easily. | ||
|
@@ -119,13 +119,13 @@ RUN micromamba create -y -f /tmp/env.yml && \ | |
# Check if this is still necessary when updating the base image. | ||
ENV PATH="/opt/conda/envs/fmriprep/bin:$PATH" \ | ||
UV_USE_IO_URING=0 | ||
RUN npm install -g svgo@^3.2.0 bids-validator@^1.14.0 && \ | ||
RUN npm install -g svgo@^3.2.0 [email protected].10 && \ | ||
rm -r ~/.npm | ||
|
||
# | ||
# Main stage | ||
# | ||
FROM ${BASE_IMAGE} as fmriprep | ||
FROM ${BASE_IMAGE} AS fmriprep | ||
|
||
# Configure apt | ||
ENV DEBIAN_FRONTEND="noninteractive" \ | ||
|
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
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
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
Oops, something went wrong.