Skip to content

Commit 89067e0

Browse files
authored
Fix the entrypoint path in the Dockerfile (#413)
* Fix entrypoint in Docker file. * Update changelog.
1 parent 982fa61 commit 89067e0

File tree

4 files changed

+33
-4
lines changed

4 files changed

+33
-4
lines changed

.versions.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"0.2.5": "Ordering of probseg maps was incorrect.",
99
"0.2.6": "Ordering of probseg maps was incorrect.",
1010
"0.2.7": "Ordering of probseg maps was incorrect.",
11-
"0.2.8": "Ordering of probseg maps was incorrect."
11+
"0.2.8": "Ordering of probseg maps was incorrect.",
12+
"0.7.0": "Broken entrypoint for Docker/Apptainer."
1213
}
1314
}

CHANGES.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,31 @@
1+
## 0.7.0
2+
3+
### 🛠 Breaking Changes
4+
5+
* Rename QC metrics and output QC files as TSVs by @tsalo in https://github.com/PennLINC/aslprep/pull/375
6+
* Move atlases into a subfolder by @tsalo in https://github.com/PennLINC/aslprep/pull/377
7+
8+
### 🎉 Exciting New Features
9+
10+
* Add --ignore fmap-jacobian option by @tsalo in https://github.com/PennLINC/aslprep/pull/385
11+
* Support lists in filter file with `*` or `null` by @tsalo in https://github.com/PennLINC/aslprep/pull/388
12+
13+
### 🐛 Bug Fixes
14+
15+
* Flip order of transforms in `init_ds_volumes_wf` by @tsalo in https://github.com/PennLINC/aslprep/pull/392
16+
17+
### Other Changes
18+
19+
* Use space definitions from niworkflows by @tsalo in https://github.com/PennLINC/aslprep/pull/378
20+
* Use niworkflows enhance-and-skullstrip workflow by @tsalo in https://github.com/PennLINC/aslprep/pull/371
21+
* Update Nilearn requirement to 0.10.3 by @tsalo in https://github.com/PennLINC/aslprep/pull/396
22+
* [ENH] Update docker image by @mattcieslak in https://github.com/PennLINC/aslprep/pull/409
23+
* [FIX] update to newer docker by @mattcieslak in https://github.com/PennLINC/aslprep/pull/412
24+
* Update codecov orb version by @tsalo in https://github.com/PennLINC/aslprep/pull/410
25+
26+
**Full Changelog**: https://github.com/PennLINC/aslprep/compare/0.6.0...0.7.0
27+
28+
129
## 0.6.0
230

331
This release makes substantial changes to *ASLPrep*.

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,5 +124,5 @@ keywords:
124124
- BIDS-App
125125
- Neuroimaging
126126
license: BSD-3-Clause
127-
version: 0.6.0
128-
date-released: '2023-12-09'
127+
version: 0.7.0
128+
date-released: '2024-05-09'

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ RUN find $HOME -type d -exec chmod go=u {} + && \
1717
RUN ldconfig
1818
WORKDIR /tmp/
1919

20-
ENTRYPOINT ["/usr/local/miniconda/bin/aslprep"]
20+
ENTRYPOINT ["/opt/conda/envs/aslprep/bin/aslprep"]
2121

2222
ARG BUILD_DATE
2323
ARG VCS_REF

0 commit comments

Comments
 (0)