Use Docker to install CODES in virtual environments or cloud infrastructure.
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
sudo apt-get update
sudo apt-get install -y docker-ce
If you want to run Docker commands without "sudo", you can add your username to the docker group:
sudo usermod -aG docker ${USER}
git clone https://
docker build -t hpc-vast -f hpc-vast.dockerfile --build-arg ssh_pub_key="$(cat ~/.ssh/id_rsa.pub)" --build-arg ssh_prv_key="$(cat ~/.ssh/id_rsa)" --squash .