From 884438978690ed89e421750b3166686575bd1efc Mon Sep 17 00:00:00 2001 From: YuviPanda Date: Wed, 27 Sep 2023 11:58:35 -0700 Subject: [PATCH] Add nbgitpuller (temporarily) to base image --- images/base/setup-scripts/setup-linux-desktop.bash | 4 +++- images/build.py | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/images/base/setup-scripts/setup-linux-desktop.bash b/images/base/setup-scripts/setup-linux-desktop.bash index 7a6e0b67..85c112bf 100755 --- a/images/base/setup-scripts/setup-linux-desktop.bash +++ b/images/base/setup-scripts/setup-linux-desktop.bash @@ -38,9 +38,11 @@ rm -rf /var/lib/apt/lists/* # Install packages required for linux desktop VPN setup to work # websockify and jupyter-server-proxy available from conda-forge, but # jupyter-remote-desktop-proxy is not. +# Temporarily install nbgitpuller too, while we work on getting it upstream mamba install -c conda-forge --yes \ websockify \ - jupyter-server-proxy + jupyter-server-proxy \ + nbgitpuller python -m pip install --no-cache "jupyter-remote-desktop-proxy<1.2.0" diff --git a/images/build.py b/images/build.py index ff1dc3c6..24329a29 100755 --- a/images/build.py +++ b/images/build.py @@ -32,6 +32,8 @@ def build(name: str, image_spec: str, build_args: dict, platform: str): 'buildx', 'build', '--load', + '--progress', + 'plain', '--platform', platform, '-t',