path
ci/woodpecker/push/woodpecker Pipeline failed Details

This commit is contained in:
maltegrosse 2023-02-02 15:54:35 +01:00
parent ba96829d16
commit 0b4ea1c825
1 changed files with 4 additions and 2 deletions

View File

@ -130,8 +130,7 @@ EXPOSE $JUPYTER_PORT
RUN echo 'export PATH=/opt/conda/bin/conda:$PATH' >> /home/${NB_USER}/.bashrc
RUN source ~/.bashrc
RUN pip install --extra-index-url https://git.sandbox.iuk.hdm-stuttgart.de/api/packages/grosse/pypi/simple jupyterlab-sandbox-theme
RUN pip install --extra-index-url https://git.sandbox.iuk.hdm-stuttgart.de/api/packages/grosse/pypi/simple jupyterlab-data-pool
RUN pip install --extra-index-url https://git.sandbox.iuk.hdm-stuttgart.de/api/packages/grosse/pypi/simple jupyterlab-training
@ -148,6 +147,9 @@ COPY jupyter_server_config.py /etc/jupyter/
# Fix permissions on /etc/jupyter as root
USER root
RUN echo 'export PATH=/opt/conda/bin:$PATH' >> /etc/profile
RUN source /etc/profile
# Legacy for Jupyter Notebook Server, see: [#1205](https://github.com/jupyter/docker-stacks/issues/1205)
RUN sed -re "s/c.ServerApp/c.NotebookApp/g" \
/etc/jupyter/jupyter_server_config.py > /etc/jupyter/jupyter_notebook_config.py && \