Skip to content

Commit 90a7aaa

Browse files
authored
[Feature:Autograding] Add Jupyter to Qiskit images (#64)
### What is the current behavior? Qiskit images do not have Jupyter installed. ### What is the new behavior? Adds Jupyter to all Qiskit images since Jupyter is commonly used with Qiskit. ### Other information? <!-- Is this a breaking change? --> <!-- How did you test --> Built the docker images on local VM and executed a jupyter notebook with Qiskit in it. Also created a python file that successfully parsed output cells in the notebook. --------- Signed-off-by: Christopher Poon <[email protected]>
1 parent c9c186c commit 90a7aaa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dockerfiles/qiskit/1.0.2/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ RUN apt-get install python3.10 pip -y
66

77
RUN pip install --upgrade pip==22.0.2
88

9-
RUN pip install qiskit[all]==1.0.2 qiskit-ibm-runtime==0.22.0
9+
RUN pip install qiskit[all]==1.0.2 notebook==7.4.3 qiskit-ibm-runtime==0.22.0

dockerfiles/qiskit/2.0.1/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ RUN apt-get install python3.10 pip -y
66

77
RUN pip install --upgrade pip==22.0.2
88

9-
RUN pip install qiskit[all]==2.0.1 qiskit-ibm-runtime==0.39.0
9+
RUN pip install qiskit[all]==2.0.1 notebook==7.4.3 qiskit-ibm-runtime==0.39.0

0 commit comments

Comments
 (0)