Skip to content

Latest commit

 

History

History

build

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Readme

The container building process uses GNU Make.

Build a container:

First create a Dockerfile.label, e.g., Dockerfile.pytorch2.2.0. See a local file as an example. Then:

make build_pytorch2.2.0

Pull a container:

make pull_pytorch2.2.0

Push a container:

make push_pytorch2.2.0

Release a container:

make release_pytorch2.2.0

Release will run build, test and push in order.

Remove a container:

make rmi_pytorch2.2.0

Test a container:

make test_pytorch2.2.0