We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
lightning
pytorch-lightning
1 parent 80efc01 commit 201fb4dCopy full SHA for 201fb4d
dockers/release/Dockerfile
@@ -24,8 +24,6 @@ ARG LIGHTNING_VERSION=""
24
25
COPY ./ /home/lightning/
26
27
-ENV PACKAGE_NAME=pytorch
28
-
29
# install dependencies
30
RUN \
31
cd /home && \
@@ -42,7 +40,8 @@ RUN \
42
40
# otherwise there is collision with folder name and pkg name on Pypi
43
41
cd lightning && \
44
pip install setuptools==59.5.0 && \
45
- pip install '.[extra,loggers,strategies]' --no-cache-dir && \
+ PACKAGE_NAME=lightning pip install '.[extra,loggers,strategies]' --no-cache-dir && \
+ PACKAGE_NAME=pytorch pip install '.[extra,loggers,strategies]' --no-cache-dir && \
46
cd .. && \
47
rm -rf lightning
48
0 commit comments