Skip to content

Commit 3409a95

Browse files
authored
Install rapids ai using mamba which is *incredibly* faster
1 parent 6ce9512 commit 3409a95

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
@@ -89,7 +89,8 @@ RUN conda config --add channels nvidia && \
8989

9090
# b/232247930: uninstall pyarrow to avoid double installation with the GPU specific version.
9191
RUN pip uninstall -y pyarrow && \
92-
conda install cudf=21.12 cuml=21.12 cudatoolkit=$CUDA_MAJOR_VERSION.$CUDA_MINOR_VERSION && \
92+
conda install -c conda-forge mamba && \
93+
mamba install cudf=21.12 cuml=21.12 cudatoolkit=$CUDA_MAJOR_VERSION.$CUDA_MINOR_VERSION && \
9394
/tmp/clean-layer.sh
9495
{{ end }}
9596

0 commit comments

Comments
 (0)