Skip to content

Commit 7a7bf49

Browse files
committed
ucx
1 parent e6fb2ab commit 7a7bf49

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

commons/Dockerfile.base.cuda11.1

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -360,14 +360,14 @@ RUN cd /usr/local/src && mkdir lightgbm && cd lightgbm && \
360360

361361
# Install Open UCX
362362
WORKDIR /tmp
363-
RUN curl -fL https://github.com/openucx/ucx/archive/v1.9.0.tar.gz \
364-
| tar -C /tmp/ucx -xz && \
365-
cd ucx && \
363+
RUN wget https://github.com/openucx/ucx/archive/v1.9.0.tar.gz && \
364+
tar xvf v1.9.0.tar.gz && \
365+
cd ucx-1.9.0 && \
366366
bash ./autogen.sh && \
367367
mkdir build && \
368368
cd build && \
369-
../configure /usr/local/ucx && \
370-
make -j $(nproc) && \
369+
../configure --prefix=/usr/local/ucx && \
370+
make -j$(nproc) && \
371371
make install
372372

373373
# Install Open MPI

0 commit comments

Comments
 (0)