Skip to content

Commit

Permalink
upddated jupyter version
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelkamprath committed Jun 30, 2020
1 parent 3a4e539 commit cf17fbc
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions spark-qfs-swarm/jupyter-server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,18 @@ FROM qfs-master:latest

#
# Expected volumes:
# /home/spark/jupyter/notebooks - where the Jupyter notebooks will be persisted
# /home/spark/jupyter/notebooks - where the Jupyter notebooks will be persisted
# /data/spark - Spark's data directory
#

USER root
RUN apt-get install -y g++
RUN pip3 install notebook==5.7.8 \
jupyter_nbextensions_configurator \
jupyter_contrib_nbextensions
RUN pip3 install \
notebook==5.7.9 \
jupyter_nbextensions_configurator \
jupyter_contrib_nbextensions \
yapf

COPY start-jupyter.sh /

USER spark
Expand All @@ -19,6 +22,7 @@ RUN jupyter nbextensions_configurator enable --user
RUN jupyter nbextension enable toc2/main
RUN jupyter nbextension enable codefolding/main
RUN jupyter nbextension enable execute_time/ExecuteTime
RUN jupyter nbextension enable code_prettify/code_prettify

RUN mkdir -p /home/spark/jupyter/runtime \
&& mkdir -p /home/spark/jupyter/notebooks
Expand Down

0 comments on commit cf17fbc

Please sign in to comment.