We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6fb2ab commit 7a7bf49Copy full SHA for 7a7bf49
commons/Dockerfile.base.cuda11.1
@@ -360,14 +360,14 @@ RUN cd /usr/local/src && mkdir lightgbm && cd lightgbm && \
360
361
# Install Open UCX
362
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 && \
+RUN wget https://github.com/openucx/ucx/archive/v1.9.0.tar.gz && \
+ tar xvf v1.9.0.tar.gz && \
+ cd ucx-1.9.0 && \
366
bash ./autogen.sh && \
367
mkdir build && \
368
cd build && \
369
- ../configure /usr/local/ucx && \
370
- make -j $(nproc) && \
+ ../configure --prefix=/usr/local/ucx && \
+ make -j$(nproc) && \
371
make install
372
373
# Install Open MPI
0 commit comments