Skip to content

Commit

Permalink
Specify python and pip versions
Browse files Browse the repository at this point in the history
  • Loading branch information
DarthNyan committed Mar 26, 2024
1 parent bfdcb6a commit fbf1203
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion dockerfiles/submitty/python/qiskit/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
FROM ubuntu:22.04

RUN apt-get update
RUN apt-get install python3 pip -y
# 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 qiskit-ibm-runtime

0 comments on commit fbf1203

Please sign in to comment.