We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8175e14 commit 7a321f5Copy full SHA for 7a321f5
docker/Dockerfile.multi
@@ -76,7 +76,8 @@ COPY constraints.txt /tmp/constraints.txt
76
RUN pip3 install --no-cache-dir -r /tmp/constraints.txt && rm /tmp/constraints.txt
77
78
# Remove nbconvert to avoid https://github.com/advisories/GHSA-xm59-rqc7-hhvf in the base NGC PyTorch image.
79
-RUN pip3 uninstall -y nbconvert || true
+# Remove pillow to avoid https://github.com/advisories/GHSA-cfh3-3jmp-rvhc in the base NGC PyTorch image.
80
+RUN pip3 uninstall -y nbconvert pillow || true
81
82
# Install UCX, NIXL, etcd
83
# TODO: Combine these into the main install.sh script
0 commit comments