From 85de004dd47ea5e4e35f8b8a988000a7bda868c8 Mon Sep 17 00:00:00 2001 From: Wing Lian Date: Sat, 16 Dec 2023 19:12:01 -0500 Subject: [PATCH] fix for build for nccl in dockerfile (#970) --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 790076687..41915de83 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -10,7 +10,7 @@ ARG PYTORCH_VERSION="2.0.1" ENV PYTORCH_VERSION=$PYTORCH_VERSION RUN apt-get update && \ - apt-get install -y vim curl nano libnccl2 libnccl-dev + apt-get install -y --allow-change-held-packages vim curl nano libnccl2 libnccl-dev WORKDIR /workspace