The repo is used to create the image used by ADLINK.
- Install docker and add docker privilege to current user.
sudo apt install docker.io
sudo groupadd docker
sudo gpasswd -a $USER docker
- Create image for testing
# Intel platform
make intel
# nvidia platform
make nvidia
- You need to login the dockerhub first.
docker login
- Create the image and push to the dockerhub.
# Intel platform
make intel
# nvidia platform
make nvidia
# push docker image to dockerhub
make push_nv
make push_intel