Docker/podman image for dxpy
# Run the following commands in the same folder of Dockerfile
podman build -t eicc_dxpy .
podman save > eicc_dxpy.tar localhost/eicc_dxpy# Docker
docker load -i eicc_dxpy.tar
docker images
# Podman
podman load -i eicc_dxpy.tar
podman images- Without args to get usage
podman run -it eicc_dxpy- With bash to get an interative shell
podman run -it eicc_dxpy /bin/bash- With dxpy to build a batch job
podman run -it eicc_dxpy /usr/local/bin/dx- Delete all containers (housekeeping)
podman rm -a