Commit 97b2ed18 authored by Florian de Boissieu's avatar Florian de Boissieu
Browse files

fix wrong URL for Rstudio behind reverse-proxy

parent b03bc335
No related merge requests found
Showing with 9 additions and 2 deletions
+9 -2
FROM rocker/binder:4.2.1
# jupyterhub must be the same version as in the hub container, otherwise it ends to a 404 error.
ARG JUPYTERHUB_VERSION=3.0.0
USER root
RUN pip3 install --no-cache \
jupyterhub==$JUPYTERHUB_VERSION
# Due to issue #134 of jupyter-rsession-proxy behind reverse-proxy.
# The problem has been fixed but without upgrading version number and not forwarded to pypi,
# this is why it has to be uninstalled and reinstalled with git repo.
RUN pip uninstall -y jupyter-rsession-proxy && \
pip install --no-cache \
jupyterhub==$JUPYTERHUB_VERSION \
git+https://github.com/jupyterhub/jupyter-rsession-proxy
USER ${NB_USER}
WORKDIR /home/${NB_USER}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment