-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #117 from arnaudbore/add_container
Add containers
- Loading branch information
Showing
6 changed files
with
51 additions
and
46 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 was deleted.
Oops, something went wrong.
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,26 @@ | ||
From ubuntu:latest | ||
ENV DEBIAN_FRONTEND=noninteractive | ||
|
||
MAINTAINER Arnaud Boré <[email protected]> | ||
|
||
RUN apt-get update | ||
RUN apt-get -y upgrade | ||
|
||
RUN apt-get -y install wget build-essential cmake git pigz \ | ||
nodejs python3 python3-pip unzip | ||
|
||
RUN pip3 install dcm2bids | ||
|
||
# Install dcm2niix from github | ||
ENV DCM2NIIX_VERSION="v1.0.20201102" | ||
|
||
WORKDIR /usr/local/src | ||
RUN git clone https://github.com/rordenlab/dcm2niix.git | ||
WORKDIR /usr/local/src/dcm2niix | ||
RUN git checkout tags/${DCM2NIIX_VERSION} -b install | ||
RUN mkdir build | ||
WORKDIR /usr/local/src/dcm2niix/build | ||
RUN cmake .. | ||
RUN make install | ||
|
||
WORKDIR / |
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,2 @@ | ||
BootStrap: docker | ||
From: unfmontreal/dcm2bids:latest |
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