Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ dependencies:
# Includes new subcommands (`switch` & `restore`) and vulnerability fixes
# over the version available via ubuntu sources
- git>=2.39
- pixi

# Not all packages will be available from conda-forge, we install from pip when we need to.
- pip~=25.0.0
Expand Down
1 change: 1 addition & 0 deletions pixi/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
detached-environments = "/tmp/pixi"
1 change: 1 addition & 0 deletions postBuild
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ set -euo pipefail
# used in the JupyterHub.
cp custom_jupyter_server_config.json ${NB_PYTHON_PREFIX}/etc/jupyter/jupyter_server_config.d/
cp custom_jupyter_server_config.json ${NB_PYTHON_PREFIX}/etc/jupyter/jupyter_notebook_config.d/
cp pixi/config.toml /etc/pixi/config.toml
3 changes: 3 additions & 0 deletions start
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ set -euo pipefail
# pop open GUIs
export DISPLAY=":1.0"

# Set pixi package cache dir
export PIXI_CACHE_DIR="/tmp/pixi-cache"

# Tell gh-scoped-creds which GitHub app to use for push access
# See https://github.com/jupyterhub/gh-scoped-creds#github-app-configuration
export GH_SCOPED_CREDS_CLIENT_ID="Iv1.bd27058fd393e285"
Expand Down