Skip to content
Snippets Groups Projects
Commit 247a2d63 authored by Tasko Olevski's avatar Tasko Olevski
Browse files

chore: fix failing image builds

parent 02e851fe
No related branches found
No related tags found
No related merge requests found
...@@ -27,14 +27,24 @@ RUN conda env update -q -f /tmp/environment.yml && \ ...@@ -27,14 +27,24 @@ RUN conda env update -q -f /tmp/environment.yml && \
# RENKU_VERSION determines the version of the renku CLI # RENKU_VERSION determines the version of the renku CLI
# that will be used in this image. To find the latest version, # that will be used in this image. To find the latest version,
# visit https://pypi.org/project/renku/#history. # visit https://pypi.org/project/renku/#history.
ARG RENKU_VERSION=0.16.0 ARG RENKU_VERSION=0.16.2
######################################################## ########################################################
# Do not edit this section and do not add anything below # Do not edit this section and do not add anything below
# Install renku from pypi or from github if it's a dev version
RUN if [ -n "$RENKU_VERSION" ] ; then \ RUN if [ -n "$RENKU_VERSION" ] ; then \
pipx uninstall renku && \ source .renku/venv/bin/activate ; \
pipx install --force renku==${RENKU_VERSION} \ currentversion=$(renku --version) ; \
; fi if [ "$RENKU_VERSION" != "$currentversion" ] ; then \
pip uninstall renku ; \
gitversion=$(echo "$RENKU_VERSION" | sed -n "s/^[[:digit:]]\+\.[[:digit:]]\+\.[[:digit:]]\+\(\.dev[[:digit:]]\+\)*\(+g\([a-f0-9]\+\)\)*\(+dirty\)*$/\3/p") ; \
if [ -n "$gitversion" ] ; then \
pip install --force "git+https://github.com/SwissDataScienceCenter/renku-python.git@$gitversion" ;\
else \
pip install --force renku==${RENKU_VERSION} pyshacl==0.17.0.post1 ;\
fi \
fi \
fi
######################################################## ########################################################
\ No newline at end of file
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