Skip to content

Commit 8ea3fab

Browse files
authored
Install newer versions of curl/libcurl (#1297)
Background: DLVM base image includes curl/libcurl 7.68 mamba requires libcurl >= 7.86 this caused libcurl to be upgraded to 8.2.1 (latest) and the curl tool still uses the old version causing the mismatch warning. Solution: Upgrade curl/libcurl before installing mamba to version This is installing the following curl/libcurl version: ``` curl pkgs/main/linux-64::curl-8.2.1-hdbd6064_0 libcurl pkgs/main/linux-64::libcurl-8.2.1-h251f7ec_0 ``` http://b/299991198
1 parent 5b37fe2 commit 8ea3fab

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Dockerfile.tmpl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,8 @@ ENV PROJ_LIB=/opt/conda/share/proj
9595
# the remaining pip commands: https://www.anaconda.com/using-pip-in-a-conda-environment/
9696
RUN conda config --add channels nvidia && \
9797
conda config --add channels rapidsai && \
98-
conda install -c conda-forge mamba && \
98+
# b/299991198 remove curl/libcurl install once DLVM base image includes version >= 7.86
99+
conda install -c conda-forge mamba curl libcurl && \
99100
# Base image channel order: conda-forge (highest priority), defaults.
100101
# End state: rapidsai (highest priority), nvidia, conda-forge, defaults.
101102
mamba install -y mkl cartopy imagemagick pyproj "shapely<2" && \

0 commit comments

Comments
 (0)