Skip to content

Commit

Permalink
Merge pull request #646 from betatim/fix-server-proxy
Browse files Browse the repository at this point in the history
[MRG] Fix up the server proxy package to get websockets back
  • Loading branch information
yuvipanda committed Apr 15, 2019
2 parents 0fb6797 + bfa26bd commit 746e4d9
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions repo2docker/buildpacks/r.py
Expand Up @@ -214,10 +214,11 @@ def get_build_scripts(self):
"${NB_USER}",
# Install nbrsessionproxy
r"""
pip install --no-cache-dir nbrsessionproxy==0.8.0 && \
jupyter serverextension enable nbrsessionproxy --sys-prefix && \
jupyter nbextension install --py nbrsessionproxy --sys-prefix && \
jupyter nbextension enable --py nbrsessionproxy --sys-prefix
pip install --no-cache-dir https://github.com/jupyterhub/jupyter-server-proxy/archive/7ac0125.zip && \
pip install --no-cache-dir jupyter-rsession-proxy==1.0b6 && \
jupyter serverextension enable jupyter_server_proxy --sys-prefix && \
jupyter nbextension install --py jupyter_server_proxy --sys-prefix && \
jupyter nbextension enable --py jupyter_server_proxy --sys-prefix
"""
),
(
Expand Down

0 comments on commit 746e4d9

Please sign in to comment.