Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • jr662933/jupyterhub-ai
  • buecker/jupyterhub-ai
  • buecker/jupyterhub
  • sr151511/vennemann
4 results
Show changes
Commits on Source (6)
......@@ -13,3 +13,16 @@ RUN pip3 install --upgrade pip
RUN pip install jupyter-server-proxy==4.0.0
RUN pip install jupyterlab-git==0.42.0
RUN pip install jupyterlab-gitlab==3.0.0
# Install jupyterlab-dash
RUN jupyter labextension install jupyterlab-dash
# Set environment variable for node memory limit
ENV NODE_OPTIONS="--max-old-space-size=4096"
# Build JupyterLab
RUN jupyter lab build
# Copy and install additional Python packages
COPY requirements.txt requirements.txt
RUN pip install --no-cache-dir -r requirements.txt