Skip to content

Commit

Permalink
[Feature:Autograding] Docker container for qiskit (python) (#34)
Browse files Browse the repository at this point in the history
### 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?
<!-- List issue if it fixes/closes/implements one using the "Fixes
#<number>" or "Closes #<number>" syntax -->

### 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?
<!-- Is this a breaking change? -->
<!-- How did you test -->
  • Loading branch information
DarthNyan authored Jun 14, 2024
1 parent 3fd950d commit 4e34a7b
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions dockerfiles/submitty/python/qiskit/Dockerfile
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 4e34a7b

Please sign in to comment.