From 0b41af73528a491172e44b76bd6533a2a927a300 Mon Sep 17 00:00:00 2001 From: Tasko Olevski Date: Mon, 13 Dec 2021 20:56:22 +0100 Subject: [PATCH] fix: disable renku cli version check for R (#211) --- docker/r/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docker/r/Dockerfile b/docker/r/Dockerfile index 7ac29201..8a079d3a 100644 --- a/docker/r/Dockerfile +++ b/docker/r/Dockerfile @@ -23,7 +23,8 @@ ENV PATH ${HOME}/.local/bin:${CONDA_PATH}/bin:$PATH # And set PATH for R! It doesn't read from the environment... RUN echo "PATH=${PATH}" >> /usr/local/lib/R/etc/Renviron && \ - echo "PATH=${PATH}" >> /etc/profile.d/set_path.sh + echo "PATH=${PATH}" >> /etc/profile.d/set_path.sh && \ + echo "RENKU_DISABLE_VERSION_CHECK=1" >> /usr/local/lib/R/etc/Renviron # The `rsession` binary that is called by nbrsessionproxy to start R doesn't seem to start # without this being explicitly set