SwissDataScienceCenter / renku-project-template

A repository for default Renku project templates.
https://renkulab.io
4 stars 20 forks source link

Update Julia template to latest image #102

Closed ciyer closed 3 years ago

ciyer commented 3 years ago

Description

https://github.com/SwissDataScienceCenter/renkulab-docker/pull/115 introduces a new image based on the current stable version of Julia (1.5.3). The Julia template should be updated to be in sync.

gavin-k-lee commented 3 years ago

I'd like to follow up on this since I'm adding a Julia tutorial.

The most current stable version is 1.6.1 and the Dockerfile in this repo is quite old - it doesn't have this bit

# 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.14.2

########################################################
# Do not edit this section and do not add anything below

RUN if [ -n "$RENKU_VERSION" ] ; then \
    pipx uninstall renku && \
    pipx install --force renku==${RENKU_VERSION} \
    ; fi

########################################################

and uses renku --version == 0.10.4 so renku dataset's name tag doesn't work.

related to https://github.com/SwissDataScienceCenter/renkulab-docker/pull/149