Typo in Dockerfile

Fixes #ISSUE_NUMBER

Pull Request resolved: https://github.com/pytorch/pytorch/pull/75165
Approved by: https://github.com/seemethere
This commit is contained in:
Miguel Morales
2022-04-04 17:23:26 +00:00
committed by PyTorch MergeBot
parent 9429dbb434
commit 0765a80491

View File

@ -32,7 +32,7 @@ RUN curl -fsSL -v -o ~/miniconda.sh -O https://repo.anaconda.com/miniconda/Mini
chmod +x ~/miniconda.sh && \
~/miniconda.sh -b -p /opt/conda && \
rm ~/miniconda.sh && \
/opt/conda/bin/conda install -y python=${PYTHON_VERSION} conda-build pyyaml numpy ipython&& \
/opt/conda/bin/conda install -y python=${PYTHON_VERSION} conda-build pyyaml numpy ipython && \
/opt/conda/bin/conda clean -ya
FROM dev-base as submodule-update