-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTEMP
39 lines (31 loc) · 1.02 KB
/
TEMP
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
FROM ubuntu:16.04
# Run apt-get calls
RUN apt-get update \
&& apt-get install -y wget \
&& wget -O- http://neuro.debian.net/lists/xenial.us-tn.full | tee /etc/apt/sources.list.d/neurodebian.sources.list \
&& apt-key adv --recv-keys --keyserver hkp://pgp.mit.edu:80 0xA5D32F012649A5A9
# Make a standard filesystem layout
RUN mkdir -p /code \
&& mkdir /oasis \
&& mkdir /projects \
&& mkdir /scratch \
&& mkdir /local-scratch
RUN apt-get install -y build-essential \
&& apt-get install -y cmake \
&& apt-get install -y cmake-curses-gui
# && apt-get install -y git
RUN apt-get install -y libtbb-dev
RUN apt-get install -y python \
&& apt-get install -y python-pip \
&& pip install nibabel \
&& pip install nipype[all]
#-- COPY run.py /code/run.py
#-- ENTRYPOINT ["/code/run.py"]
RUN export DEBIAN_FRONTEND=noninteractive \
&& apt-get install -y python \
&& apt-get install -y python-pip \
&& pip install --upgrade pip \
&& pip install nibabel \
&& pip install nipype \
&& pip install pandas \
&& unset DEBIAN_FRONTEND