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