Add libibverbs-dev to Dockerfile (#1427)

This commit is contained in:
William Arnold
2024-09-15 15:40:31 +09:00
committed by GitHub
parent 9463bc1385
commit 58cafe23a7

View File

@@ -11,7 +11,7 @@ RUN echo 'tzdata tzdata/Areas select America' | debconf-set-selections \
&& apt install python3.10 python3.10-dev -y \
&& update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.8 1 && update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.10 2 \
&& update-alternatives --set python3 /usr/bin/python3.10 && apt install python3.10-distutils -y \
&& apt install curl git sudo -y \
&& apt install curl git sudo libibverbs-dev -y \
&& curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py && python3 get-pip.py \
&& python3 --version \
&& python3 -m pip --version \
@@ -46,4 +46,5 @@ RUN if [ "$CUDA_VERSION" = "12.1.1" ]; then \
RUN python3 -m pip cache purge
ENV DEBIAN_FRONTEND=interactive