forked from NILAB-UvA/bidsify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgenerate_dockerfile
More file actions
executable file
·19 lines (19 loc) · 949 Bytes
/
generate_dockerfile
File metadata and controls
executable file
·19 lines (19 loc) · 949 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/bash
docker run --rm kaczmarj/neurodocker:0.6.0 generate docker \
--base debian:stretch --pkg-manager apt \
--install git \
--fsl version=6.0.1 \
--dcm2niix version=master method=source \
--miniconda create_env=neuro \
conda_install="python=3.6 numpy pandas" \
pip_install="nipype git+https://github.com/poldracklab/pydeface.git@master pyyaml nibabel joblib" \
activate=true \
--install gnupg2 vim \
--run "curl --silent --location https://deb.nodesource.com/setup_10.x | bash -" \
--install nodejs \
--run "npm install -g bids-validator" \
--copy . /home/neuro/bidsify \
--workdir /home/neuro/bidsify \
--run "/opt/miniconda-latest/envs/neuro/bin/python setup.py install" \
--volume /raw \
--volume /bids > Dockerfile