-
Notifications
You must be signed in to change notification settings - Fork 3
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
85603de
commit bbcb168
Showing
3 changed files
with
24 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
## qMRLab Docker images | ||
|
||
With each [qMRLab release](https://github.com/qMRLab/qMRLab/releases), the `minimal` docker image is built automatically. Available | ||
tags can be found [here](https://hub.docker.com/r/qmrlab/minimal/tags?page=1&ordering=last_updated). | ||
|
||
## Docker images for external (non-qMRLab) processes | ||
|
||
If available, off-the-shelf containers can be used by modifying `nextflow.config` file. | ||
|
||
`Dockerfiles` of other Docker images maintained by qMRLab (e.g. `qmrlab/antsfls`) are available in | ||
this directory. |
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
FROM neurodebian:xenial | ||
MAINTAINER qmrlab | ||
|
||
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -y install ants git curl unzip fsl-5.0-core | ||
|
||
RUN /bin/bash -c "source /etc/fsl/5.0/fsl.sh" | ||
|
||
ENV PATH=$PATH:/usr/lib/ants:/usr/lib/fsl/5.0 \ | ||
FSLDIR=/usr/share/fsl/5.0 \ | ||
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/lib/fsl/5.0 \ | ||
FSLOUTPUTTYPE=NIFTI_GZ \ | ||
FSLTCLSH=/usr/bin/tclsh |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
docker build --rm -t qmrlab/antsfsl . |