Skip to content

Commit 65d090c

Browse files
authored
Merge pull request #1222 from Kaggle/fix-bash-warn
Fix bash printing a warning on all execs.
2 parents 9601828 + 95d7729 commit 65d090c

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Dockerfile.tmpl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -642,6 +642,9 @@ RUN jupyter-nbextension disable nb_conda --py --sys-prefix && \
642642
# Force only one libcusolver
643643
RUN rm /opt/conda/bin/../lib/libcusolver.so.11 && ln -s /usr/local/cuda/lib64/libcusolver.so.11 /opt/conda/bin/../lib/libcusolver.so.11
644644

645+
# b/270147159 conda ships with a version of libtinfo which is missing version info causing warnings, replace it with a good version.
646+
RUN rm /opt/conda/lib/libtinfo.so.6 && ln -s /usr/lib/x86_64-linux-gnu/libtinfo.so.6 /opt/conda/lib/libtinfo.so.6
647+
645648
# Set backend for matplotlib
646649
ENV MPLBACKEND "agg"
647650

0 commit comments

Comments
 (0)