Skip to content

Commit 46b8476

Browse files
committed
make sure conda has the right perms all the times
1 parent b1ed84f commit 46b8476

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,8 +168,10 @@ ENV PATH=/usr/local/miniconda/bin:$PATH \
168168

169169
# Installing precomputed python packages
170170
RUN conda config --add channels conda-forge --add channels intel && \
171+
chmod +x /usr/local/miniconda/bin/* && \
171172
conda config --set always_yes yes --set changeps1 no && \
172173
conda update -q conda && \
174+
chmod +x /usr/local/miniconda/bin/* && \
173175
conda install -y mkl=2017.0.1 \
174176
numpy=1.11.2 \
175177
scipy=0.18.1 \
@@ -181,7 +183,6 @@ RUN conda config --add channels conda-forge --add channels intel && \
181183
traits=4.6.0 \
182184
psutil=5.0.1 \
183185
icu=58.1 && \
184-
chmod +x /usr/local/miniconda/bin/*
185186

186187
# matplotlib cleanups: set default backend, precaching fonts
187188
RUN sed -i 's/\(backend *: \).*$/\1Agg/g' /usr/local/miniconda/lib/python3.5/site-packages/matplotlib/mpl-data/matplotlibrc && \

0 commit comments

Comments
 (0)