From 991e99e1b442c15d9837687472e85e9a0093d690 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rok=20Ro=C5=A1kar?= Date: Wed, 10 Feb 2021 16:50:56 +0100 Subject: [PATCH] chore: do the jupyter build at the end of vscode script (#139) --- scripts/install-vscode.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/install-vscode.sh b/scripts/install-vscode.sh index 23f4c755..26c6bfaf 100644 --- a/scripts/install-vscode.sh +++ b/scripts/install-vscode.sh @@ -1,9 +1,9 @@ #!/bin/sh -VSCODE_VERSION=${VSCODE_VERSION:="3.6.2"} +VSCODE_VERSION=${VSCODE_VERSION:="3.8.1"} # code-server installation -wget https://github.com/cdr/code-server/releases/download/v${VSCODE_VERSION}/code-server_3.6.2_amd64.deb +wget https://github.com/cdr/code-server/releases/download/v${VSCODE_VERSION}/code-server_${VSCODE_VERSION}_amd64.deb dpkg -i ./code-server*.deb rm code-server_3.6.2_amd64.deb apt-get clean @@ -13,4 +13,4 @@ chown -R 1000:1000 /home/${NB_USER}/.local/share # Jupyter support pip install git+https://github.com/betatim/vscode-binder jupyter serverextension enable --py jupyter_server_proxy && \ -jupyter labextension install --no-build @jupyterlab/server-proxy +jupyter labextension install @jupyterlab/server-proxy