Skip to content

Commit d1268c7

Browse files
committed
fix: add support for pigz
1 parent b55b01e commit d1268c7

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Dockerfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,10 @@ RUN conda install -y -c conda-forge nipype && \
1515
pip install https://github.com/moloney/dcmstack/archive/c12d27d2c802d75a33ad70110124500a83e851ee.zip && \
1616
pip install datalad && \
1717
conda clean -tipsy && rm -rf ~/.pip/
18-
RUN cd /tmp && git clone https://github.com/neurolabusc/dcm2niix.git && \
18+
RUN apt-get update && apt-get upgrade -y && \
19+
apt-get install -y pigz && \
20+
apt-get clean -y && apt-get autoclean -y && apt-get autoremove -y && \
21+
cd /tmp && git clone https://github.com/neurolabusc/dcm2niix.git && \
1922
cd dcm2niix && \
2023
git checkout 0dc154d9aab4679e487abeaee1759c61559fc7a8 && \
2124
mkdir build && cd build && cmake -DBATCH_VERSION=ON .. && \

0 commit comments

Comments
 (0)