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.0Pull a container:
make pull_pytorch2.2.0Push a container:
make push_pytorch2.2.0Release a container:
make release_pytorch2.2.0Release will run build, test and push in order.
Remove a container:
make rmi_pytorch2.2.0Test a container:
make test_pytorch2.2.0