Guide: Docker base image

In this guide we will show you how to use the docker image to start and use your container.

Build the image

docker build . --build-arg FULL=False --file docker/Dockerfile --tag qatcomputer:latest

The FULL is aim to install any external Qiskit’s modules : - qiskit-nature - qiskit-finance - qiskit-optimization - qiskit-machine-learning

Use in Dockerfile

FROM qatcomputer:latest

Using the image as base for your Dockerfile, avoid to re-install every packages need for Qiskt and base Quantum programming.

Pull from DockerHub

The image is also available in classical and full version in the DockerHub.

docker pull mickahell/qatcomputer:latest
docker pull mickahell/qatcomputer-full:latest