Skip to content

Commit 53dbf71

Browse files
authored
Merge pull request #276 from kaczmarj/enh/condapip
ENH: wrap conda and pip pkgs in single quotes
2 parents 3ab6df7 + 4d0e882 commit 53dbf71

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

Dockerfile

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Generated by Neurodocker version 0.4.1-28-g83dbc15
2-
# Timestamp: 2018-11-13 15:14:11 UTC
1+
# Generated by Neurodocker version 0.4.2-3-gf7055a1
2+
# Timestamp: 2018-11-13 22:04:04 UTC
33
#
44
# Thank you for using Neurodocker. If you discover any issues
55
# or ways to improve this software, please submit an issue or
@@ -90,15 +90,15 @@ RUN export PATH="/opt/miniconda-latest/bin:$PATH" \
9090
&& conda config --system --set show_channel_urls true \
9191
&& sync && conda clean -tipsy && sync \
9292
&& conda install -y -q --name base \
93-
python=3.6 \
94-
traits>=4.6.0 \
95-
scipy \
96-
numpy \
97-
nomkl \
93+
'python=3.6' \
94+
'traits>=4.6.0' \
95+
'scipy' \
96+
'numpy' \
97+
'nomkl' \
9898
&& sync && conda clean -tipsy && sync \
9999
&& bash -c "source activate base \
100100
&& pip install --no-cache-dir --editable \
101-
/src/heudiconv[all]" \
101+
'/src/heudiconv[all]'" \
102102
&& rm -rf ~/.cache/pip/* \
103103
&& sync
104104

utils/gen-docker-image.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -eu
44

55
VER=$(grep -Po '(?<=^__version__ = ).*' ../heudiconv/info.py | sed 's/"//g')
66

7-
image="kaczmarj/neurodocker:master@sha256:9f7d58f6977cfcd4dd5d1a2e70be4124417206b716d51b7d9a182820157f1bd3"
7+
image="kaczmarj/neurodocker:master@sha256:936401fe8f677e0d294f688f352cbb643c9693f8de371475de1d593650e42a66"
88

99
docker run --rm $image generate docker -b neurodebian:stretch -p apt \
1010
--dcm2niix version=v1.0.20180622 method=source \

0 commit comments

Comments
 (0)