Skip to content

Commit 74c93ec

Browse files
committed
fix syntax errors in Dockerfile
1 parent d49efb7 commit 74c93ec

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

docker/nipype_test/Dockerfile_base

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,9 @@ RUN curl -sSL http://www.fil.ion.ucl.ac.uk/spm/download/restricted/utopia/dev/sp
9191
unzip spm12.zip && \
9292
rm -rf spm12.zip
9393

94-
ENV MATLABCMD "/opt/mcr/v85/toolbox/matlab" \
95-
SPMMCRCMD "/opt/spm12/run_spm12.sh /opt/mcr/v85/ script" \
96-
FORCE_SPMMCR 1
94+
ENV MATLABCMD="/opt/mcr/v85/toolbox/matlab" \
95+
SPMMCRCMD="/opt/spm12/run_spm12.sh /opt/mcr/v85/ script" \
96+
FORCE_SPMMCR=1
9797

9898
WORKDIR /root
9999
# Install miniconda
@@ -105,13 +105,12 @@ ENV PATH /usr/local/miniconda/bin:$PATH
105105

106106
# http://bugs.python.org/issue19846
107107
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
108-
ENV LANG C.UTF-8 \
109-
LC_ALL C.UTF-8
108+
ENV LANG=C.UTF-8 \
109+
LC_ALL=C.UTF-8
110110

111111
# Add conda-forge channel in conda
112112
RUN conda config --add channels conda-forge && \
113113
conda install -y lockfile nipype matplotlib sphinx boto boto3 coverage mock pbr nitime dipy && \
114114
pip install nose-cov doctest-ignore-unicode configparser
115115

116116
CMD ["/bin/bash"]
117-

0 commit comments

Comments
 (0)