Skip to content

Commit

Permalink
Fix the entrypoint path in the Dockerfile (#413)
Browse files Browse the repository at this point in the history
* Fix entrypoint in Docker file.

* Update changelog.
  • Loading branch information
tsalo committed May 10, 2024
1 parent 982fa61 commit 89067e0
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 4 deletions.
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

0 comments on commit 89067e0

Please sign in to comment.