I saw this blog post and thought it would make a good Docker image. Here's what I did:
I created a Linux on Z VSI in IBM Cloud VPC. Then, SSH'ing into this instance as root user, I:
apt-get update
apt-get upgrade -y
apt install docker.ioCreating the files in this repo locally on my Mac, I copied them to my VSI with:
rsync -azvhP -e "ssh -i $HOME/.ssh/hpvs" * root@public_ip: from my Mac terminal. Then to build the image from this Dockerfile, I did:
docker build -t qiskit .