-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathDockerfile
58 lines (46 loc) · 2.11 KB
/
Dockerfile
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# BIDSKIT 2020.08.01
# MAINTAINER: [email protected]
# UPDATED: 2023.09.12 by [email protected]
# Install Ubuntu 22.04 LTS Bionic Beaver
FROM ubuntu:22.04
# Install Node.js version 12
FROM node:20
VOLUME ["/dataset"]
# redirect to archived-releases
RUN echo "deb [trusted=yes] http://archive.debian.org/debian stretch main non-free contrib" > /etc/apt/sources.list && \
echo 'deb-src [trusted=yes] http://archive.debian.org/debian/ stretch main non-free contrib' >> /etc/apt/sources.list && \
echo 'deb [trusted=yes] http://archive.debian.org/debian-security/ stretch/updates main non-free contrib' >> /etc/apt/sources.list
# Install updates, Python3 for BIDS conversion script, Pip3 for Python to pull the pydicom module
# git and make for building DICOM convertor from source + related dependencies
# Clean up after to keep image size compact!
RUN apt-get update && \
apt-get upgrade -y && \
apt-get install -y build-essential libjpeg-dev python3 python3-pip git cmake pkg-config pigz && \
apt-get clean -y && \
apt-get autoclean -y && \
apt-get autoremove -y
# Install Node.js bids-validator
RUN npm install --global npm@^7 && \
npm install -g bids-validator
# Pull Chris Rorden's dcm2niix latest version from github and compile from source
# - dcm2niix is installed in /usr/local/bin within the container
# - not including support for JPEG2000 (optional -DUSE_OPENJPEG flag)
# - not including support for dcm2niibatch (optional -DBATCH_VERSION flag)
RUN cd /tmp && \
git clone https://github.com/rordenlab/dcm2niix.git && \
cd dcm2niix && \
mkdir build && \
cd build && \
cmake .. && \
make install
# avoid error: externally-managed-environment
RUN PY_DIR=$(find /usr/lib -maxdepth 1 -type d | grep python3.*.) && \
mv $PY_DIR/EXTERNALLY-MANAGED $PY_DIR/EXTERNALLY-MANAGED.old
# Install important python3 packages explicitly to avoid compilation errors from setup.py
RUN pip3 install cython scipy numpy pandas
# Install python DICOM and BIDS packages
RUN pip3 install pydicom pybids
# Install python3 bidskit in the container
ADD . /myapp
WORKDIR /myapp
RUN python3 setup.py install