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 844cc67 + 2251eb1 commit 66199baCopy full SHA for 66199ba
scripts/Dockerfile
@@ -13,15 +13,15 @@ RUN apt-get update && \
13
USER $NB_USER
14
15
COPY scripts/create_testenv.sh /tmp/create_testenv.sh
16
-COPY setup.py $HOME/work/setup.py
17
-COPY requirements.txt $HOME/work/requirements.txt
+COPY setup.py $HOME/setup.py
+COPY requirements.txt $HOME/requirements.txt
18
RUN /bin/bash /tmp/create_testenv.sh --global --no-setup
19
20
# matplotlib nonsense
21
ENV XDG_CACHE_HOME /home/$NB_USER/.cache/
22
ENV MPLBACKEND=Agg
23
# for prettier default plot styling
24
-RUN pip3 install seaborn
+RUN pip install seaborn
25
# Import matplotlib the first time to build the font cache.
26
RUN python -c "import matplotlib.pyplot"
27
0 commit comments