mirror of
https://github.com/wassname/pytorch-lightning.git
synced 2026-08-30 11:29:56 +08:00
* Create Dockerfile * add readme * Update MANIFEST.in * Update Dockerfile Co-authored-by: J. Borovec <jirka.borovec@seznam.cz>
13 lines
390 B
Markdown
13 lines
390 B
Markdown
## Builds
|
|
|
|
You can build it on your own, note it takes lots of time, be prepared.
|
|
```bash
|
|
git clone <git-repository>
|
|
docker image build -t pytorch-lightning:py36 -f docker/Dockerfile --build-arg PYTHON_VERSION=3.6 .
|
|
```
|
|
To build other versions, select different Dockerfile.
|
|
```bash
|
|
docker image list
|
|
docker run --rm -it pytorch-lightning:py36 bash
|
|
docker image rm pytorch-lightning:py36
|
|
``` |