We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8142a46 + e71ab64 commit 93a5438Copy full SHA for 93a5438
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