Skip to content
Snippets Groups Projects
Commit 9bb88a7c authored by Simon van Hemert's avatar Simon van Hemert
Browse files

Update Dockerfile

parent e631ffa6
No related branches found
No related tags found
No related merge requests found
......@@ -5,11 +5,6 @@ FROM ${RENKU_BASE_IMAGE}
# see https://github.com/SwissDataScienceCenter/renkulab-docker
# to swap this image for the latest version available
# RENKU_VERSION determines the version of the renku CLI
# that will be used in this image. To find the latest version,
# visit https://pypi.org/project/renku/#history.
ARG RENKU_VERSION=0.15.1
# Uncomment and adapt if code is to be included in the image
# COPY src /code/src
......@@ -36,7 +31,17 @@ RUN conda env update -q -f /tmp/environment.yml && \
RUN jupyter labextension install jupyterlab_tensorboard && \
pip install jupyter-tensorboard==0.1.10
# RENKU_VERSION determines the version of the renku CLI
# that will be used in this image. To find the latest version,
# visit https://pypi.org/project/renku/#history.
ARG RENKU_VERSION=0.15.1
########################################################
# Do not edit this section and do not add anything below
RUN pipx install --force renku==${RENKU_VERSION}
RUN if [ -n "$RENKU_VERSION" ] ; then \
pipx uninstall renku && \
pipx install --force renku==${RENKU_VERSION} \
; fi
########################################################
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment