Skip to content

Commit 66199ba

Browse files
Merge pull request #2459 from pymc-devs/fix-Dockerfile
The scipy container now uses /home/jovyan, not /home/jovyan/work
2 parents 844cc67 + 2251eb1 commit 66199ba

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scripts/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ RUN apt-get update && \
1313
USER $NB_USER
1414

1515
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
16+
COPY setup.py $HOME/setup.py
17+
COPY requirements.txt $HOME/requirements.txt
1818
RUN /bin/bash /tmp/create_testenv.sh --global --no-setup
1919

2020
# matplotlib nonsense
2121
ENV XDG_CACHE_HOME /home/$NB_USER/.cache/
2222
ENV MPLBACKEND=Agg
2323
# for prettier default plot styling
24-
RUN pip3 install seaborn
24+
RUN pip install seaborn
2525
# Import matplotlib the first time to build the font cache.
2626
RUN python -c "import matplotlib.pyplot"
2727

0 commit comments

Comments
 (0)