Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix the entrypoint path in the Dockerfile #413

Merged
merged 2 commits into from
May 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"0.2.5": "Ordering of probseg maps was incorrect.",
"0.2.6": "Ordering of probseg maps was incorrect.",
"0.2.7": "Ordering of probseg maps was incorrect.",
"0.2.8": "Ordering of probseg maps was incorrect."
"0.2.8": "Ordering of probseg maps was incorrect.",
"0.7.0": "Broken entrypoint for Docker/Apptainer."
}
}
28 changes: 28 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,31 @@
## 0.7.0

### 🛠 Breaking Changes

* Rename QC metrics and output QC files as TSVs by @tsalo in https://github.com/PennLINC/aslprep/pull/375
* Move atlases into a subfolder by @tsalo in https://github.com/PennLINC/aslprep/pull/377

### 🎉 Exciting New Features

* Add --ignore fmap-jacobian option by @tsalo in https://github.com/PennLINC/aslprep/pull/385
* Support lists in filter file with `*` or `null` by @tsalo in https://github.com/PennLINC/aslprep/pull/388

### 🐛 Bug Fixes

* Flip order of transforms in `init_ds_volumes_wf` by @tsalo in https://github.com/PennLINC/aslprep/pull/392

### Other Changes

* Use space definitions from niworkflows by @tsalo in https://github.com/PennLINC/aslprep/pull/378
* Use niworkflows enhance-and-skullstrip workflow by @tsalo in https://github.com/PennLINC/aslprep/pull/371
* Update Nilearn requirement to 0.10.3 by @tsalo in https://github.com/PennLINC/aslprep/pull/396
* [ENH] Update docker image by @mattcieslak in https://github.com/PennLINC/aslprep/pull/409
* [FIX] update to newer docker by @mattcieslak in https://github.com/PennLINC/aslprep/pull/412
* Update codecov orb version by @tsalo in https://github.com/PennLINC/aslprep/pull/410

**Full Changelog**: https://github.com/PennLINC/aslprep/compare/0.6.0...0.7.0


## 0.6.0

This release makes substantial changes to *ASLPrep*.
Expand Down
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -124,5 +124,5 @@ keywords:
- BIDS-App
- Neuroimaging
license: BSD-3-Clause
version: 0.6.0
date-released: '2023-12-09'
version: 0.7.0
date-released: '2024-05-09'
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ RUN find $HOME -type d -exec chmod go=u {} + && \
RUN ldconfig
WORKDIR /tmp/

ENTRYPOINT ["/usr/local/miniconda/bin/aslprep"]
ENTRYPOINT ["/opt/conda/envs/aslprep/bin/aslprep"]

ARG BUILD_DATE
ARG VCS_REF
Expand Down