From 58cafe23a7dcbeac8b45ad79212c3a535f1da6ce Mon Sep 17 00:00:00 2001 From: William Arnold Date: Sun, 15 Sep 2024 15:40:31 +0900 Subject: [PATCH] Add libibverbs-dev to Dockerfile (#1427) --- docker/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 42656ca26..6dd4f9fbb 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -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