-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathDockerfile-qt
More file actions
29 lines (20 loc) · 809 Bytes
/
Dockerfile-qt
File metadata and controls
29 lines (20 loc) · 809 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
ARG BASE_CONTAINER=define_as_build_arg
FROM ${BASE_CONTAINER}
LABEL MAINTAINER="CSEL Ops <admin@cs.colorado.edu>"
USER root
ENV DEBIAN_FRONTEND noninteractive
#
# Dockefile for CSCI 3090 : Quantum Computing
# ECEN 4925 : Quantum Hardware
#
RUN pip install pytest cvxpy qutip qiskit networkx noisyopt qiskit-ibm-runtime qiskit-aer
# Install qiskit-textbook for additional qiskit helpers
RUN pip install git+https://github.com/qiskit-community/qiskit-textbook.git#subdirectory=qiskit-textbook-src
# Install package for nice matplotlib circuit drawing
RUN pip install pylatexenc
# The current version is old and causing errors
RUN pip install --upgrade matplotlib
RUN rm -rf /home/jovyan && \
mkdir /home/jovyan && \
chown $NB_UID:$NB_GID /home/jovyan
USER $NB_UID