diff --git a/jupyterhub/base/Dockerfile b/jupyterhub/base/Dockerfile index f0037e5654f0a74999f2f98a040831f91f3a8d1d..b19b41df7fac98d743040da917e70d4598f3407b 100755 --- a/jupyterhub/base/Dockerfile +++ b/jupyterhub/base/Dockerfile @@ -56,6 +56,10 @@ RUN python${PYTHON_VERSION} -m pip install jupyterlab_code_formatter==1.3.8 && \ RUN python${PYTHON_VERSION} -m pip install jupyterlab-git && \ python${PYTHON_VERSION} -m jupyter lab build +RUN python${PYTHON_VERSION} -m pip install jupyterlab_iframe && \ + python${PYTHON_VERSION} -m jupyter labextension install jupyterlab_iframe && \ + python${PYTHON_VERSION} -m jupyter serverextension enable --py jupyterlab_iframe + RUN mkdir -p /usr/local/venv && \ python${PYTHON_VERSION} -m venv /usr/local/venv/default && \ . /usr/local/venv/default/bin/activate && \