2021-01-29 16:01:03 +00:00
|
|
|
# Copyright The PyTorch Lightning team.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2022-06-02 12:54:13 +00:00
|
|
|
ARG PYTORCH_VERSION=22.04
|
2021-08-02 16:05:36 +00:00
|
|
|
|
2021-05-07 11:13:54 +00:00
|
|
|
# https://docs.nvidia.com/deeplearning/frameworks/pytorch-release-notes
|
2021-08-02 16:05:36 +00:00
|
|
|
FROM nvcr.io/nvidia/pytorch:${PYTORCH_VERSION}-py3
|
2021-01-29 16:01:03 +00:00
|
|
|
|
2021-05-24 18:31:31 +00:00
|
|
|
LABEL maintainer="PyTorchLightning <https://github.com/PyTorchLightning>"
|
2021-01-29 16:01:03 +00:00
|
|
|
|
|
|
|
ARG LIGHTNING_VERSION=""
|
|
|
|
|
2021-04-27 19:29:49 +00:00
|
|
|
RUN python -c "import torch ; print(torch.__version__)" >> torch_version.info
|
|
|
|
|
2021-04-13 09:06:06 +00:00
|
|
|
COPY ./ /workspace/pytorch-lightning/
|
2021-01-29 16:01:03 +00:00
|
|
|
|
|
|
|
RUN \
|
2021-04-13 09:06:06 +00:00
|
|
|
cd /workspace && \
|
2021-03-29 08:39:06 +00:00
|
|
|
# replace by specific version if asked
|
2021-03-19 21:25:46 +00:00
|
|
|
if [ ! -z "$LIGHTNING_VERSION" ] ; then \
|
2021-01-29 16:01:03 +00:00
|
|
|
rm -rf pytorch-lightning ; \
|
2021-11-29 14:14:37 +00:00
|
|
|
git clone https://github.com/PyTorchLightning/pytorch-lightning.git ; \
|
|
|
|
cd pytorch-lightning ; \
|
|
|
|
git checkout ${LIGHTNING_VERSION} ; \
|
|
|
|
git submodule update --init --recursive ; \
|
|
|
|
cd .. ; \
|
2021-03-19 21:25:46 +00:00
|
|
|
fi && \
|
2021-04-27 19:29:49 +00:00
|
|
|
# save the examples
|
2022-06-02 12:54:13 +00:00
|
|
|
mv pytorch-lightning/_notebooks/.notebooks/ notebooks && \
|
2022-06-15 12:53:51 +00:00
|
|
|
mv pytorch-lightning/examples . && \
|
2021-03-29 08:39:06 +00:00
|
|
|
|
2022-03-11 11:13:43 +00:00
|
|
|
# Installations \
|
|
|
|
pip install -q fire && \
|
2022-06-02 12:54:13 +00:00
|
|
|
pip install "Pillow>=8.2, !=8.3.0" "cryptography>=3.4" "py>=1.10" --no-cache-dir && \
|
|
|
|
pip install ./pytorch-lightning["extra","loggers","strategies"] --no-cache-dir && \
|
|
|
|
pip install -r ./pytorch-lightning/requirements/examples.txt --no-cache-dir && \
|
2021-04-27 19:29:49 +00:00
|
|
|
rm -rf pytorch-lightning && \
|
|
|
|
pip list
|
|
|
|
|
2022-06-02 12:54:13 +00:00
|
|
|
RUN pip install jupyterlab[all] -U
|
|
|
|
|
2021-06-01 10:11:29 +00:00
|
|
|
RUN pip install lightning-grid -U && \
|
2021-06-06 21:56:27 +00:00
|
|
|
pip install "py>=1.10" "protobuf>=3.15.6" --upgrade-strategy only-if-needed
|
2021-05-07 11:13:54 +00:00
|
|
|
|
2021-04-27 19:29:49 +00:00
|
|
|
ENV PYTHONPATH="/workspace"
|
2021-01-29 16:01:03 +00:00
|
|
|
|
2021-04-27 19:29:49 +00:00
|
|
|
RUN \
|
|
|
|
TORCH_VERSION=$(cat torch_version.info) && \
|
|
|
|
rm torch_version.info && \
|
|
|
|
python --version && \
|
2021-01-29 16:01:03 +00:00
|
|
|
pip --version && \
|
2021-04-27 19:29:49 +00:00
|
|
|
pip list | grep torch && \
|
2021-10-29 06:48:05 +00:00
|
|
|
python -c "import torch; assert torch.__version__.startswith('$TORCH_VERSION'), torch.__version__" && \
|
2021-01-29 16:01:03 +00:00
|
|
|
python -c "import pytorch_lightning as pl; print(pl.__version__)"
|
|
|
|
|
2021-04-27 19:29:49 +00:00
|
|
|
CMD ["jupyter", "notebook", "--port=8888", "--no-browser", "--ip=0.0.0.0", "--allow-root"]
|