We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8142a46 commit e71ab64Copy full SHA for e71ab64
1 file changed
Dockerfile.py
@@ -1,10 +1,9 @@
1
FROM jupyter/base-notebook
2
3
USER root
4
-RUN apt-get update
5
-RUN apt-get install -y build-essential g++ libgl1-mesa-glx libx11-6
6
-RUN conda install matplotlib scipy
7
-RUN pip install cvxopt
+RUN apt-get update && apt-get install -y build-essential g++ libgl1-mesa-glx libx11-6
+COPY requirements.txt .
+RUN pip install -r requirements.txt
8
COPY . /src
9
WORKDIR /src
10
0 commit comments