From f3a8787174fbbfe48b30a4b97d0cf1db40ed93ec Mon Sep 17 00:00:00 2001 From: Ian Pittwood Date: Mon, 13 Nov 2023 13:15:55 -0800 Subject: [PATCH] Backwards compatibility in r-session-complete CentOS 7 --- r-session-complete/Dockerfile.centos7 | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/r-session-complete/Dockerfile.centos7 b/r-session-complete/Dockerfile.centos7 index 37935d32..cf1d5237 100644 --- a/r-session-complete/Dockerfile.centos7 +++ b/r-session-complete/Dockerfile.centos7 @@ -34,6 +34,10 @@ RUN yum install -y subversion \ && yum clean all \ && rm -rf /var/lib/rstudio-server/r-versions +COPY maybe_install_vs_code.sh /tmp/maybe_install_vs_code.sh +RUN /tmp/maybe_install_vs_code.sh \ + && rm /tmp/maybe_install_vs_code.sh + RUN /opt/python/"${PYTHON_VERSION}"/bin/pip3 install \ jupyter \ jupyterlab=="${JUPYTERLAB_VERSION}" \