From 4e34a7babfd76e70c7bc7e0ef4fed6200e0ef207 Mon Sep 17 00:00:00 2001 From: Tate Whiteberg <89590361+DarthNyan@users.noreply.github.com> Date: Fri, 14 Jun 2024 14:17:07 -0400 Subject: [PATCH] [Feature:Autograding] Docker container for qiskit (python) (#34) ### Please check if the PR fulfills these requirements: * [ ] Tests for the changes have been added/updated (if possible) * [ ] Documentation has been updated/added if relevant ### What is the current behavior? ### What is the new behavior? Dockerfile for a basic python installation with IBM's qiskit module for use with RPI's new Quantum Computer. ### Other information? --- dockerfiles/submitty/python/qiskit/Dockerfile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 dockerfiles/submitty/python/qiskit/Dockerfile diff --git a/dockerfiles/submitty/python/qiskit/Dockerfile b/dockerfiles/submitty/python/qiskit/Dockerfile new file mode 100644 index 0000000..e0ea675 --- /dev/null +++ b/dockerfiles/submitty/python/qiskit/Dockerfile @@ -0,0 +1,9 @@ +FROM ubuntu:22.04 + +RUN apt-get update +# Python 3.10 is current version on apt-get as of 03/2024 +RUN apt-get install python3.10 pip -y + +RUN pip install --upgrade pip==22.0.2 + +RUN pip install qiskit==1.0.2 qiskit-ibm-runtime==0.22.0 \ No newline at end of file