From e2ffdf467a988279f09de66ff31e9ccf33a55d23 Mon Sep 17 00:00:00 2001 From: Eli Uriegas Date: Mon, 28 Sep 2020 09:50:48 -0700 Subject: [PATCH] docker: Add torchelastic to docker image (#45438) Summary: Pull Request resolved: https://github.com/pytorch/pytorch/pull/45438 Adds torchelastic (as well as its dependencies) to the official docker images Signed-off-by: Eli Uriegas Test Plan: Imported from OSS Reviewed By: tierex Differential Revision: D23963787 Pulled By: seemethere fbshipit-source-id: 54ebb4b9c50699e543f264975dadf99badf55753 --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 5bae3ec14ea6..d328a75c7c6c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -52,6 +52,7 @@ FROM conda as conda-installs ARG INSTALL_CHANNEL=pytorch-nightly RUN /opt/conda/bin/conda install -c "${INSTALL_CHANNEL}" -y pytorch torchvision cudatoolkit=11.0.221 && \ /opt/conda/bin/conda clean -ya +RUN /opt/conda/bin/pip install torchelastic FROM ${BASE_IMAGE} as official LABEL com.nvidia.volumes.needed="nvidia_driver"