From b5a73d54287f938abebdce478d5c992ea665843e Mon Sep 17 00:00:00 2001 From: Masaki Yatsu Date: Thu, 18 Sep 2025 15:18:02 +0900 Subject: [PATCH] feat(jupyterhub): update container images --- jupyterhub/images/datastack-cuda-notebook/Dockerfile | 1 + jupyterhub/images/datastack-notebook/Dockerfile | 1 + jupyterhub/justfile | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/jupyterhub/images/datastack-cuda-notebook/Dockerfile b/jupyterhub/images/datastack-cuda-notebook/Dockerfile index 27f669c..ebf83b8 100644 --- a/jupyterhub/images/datastack-cuda-notebook/Dockerfile +++ b/jupyterhub/images/datastack-cuda-notebook/Dockerfile @@ -127,6 +127,7 @@ RUN mamba install --yes \ 'pyarrow' \ 'qdrant-client' \ 'rapidfuzz' \ + 'simple-salesforce' \ 'tensorflow' \ 'transformers' \ 'unstructured' \ diff --git a/jupyterhub/images/datastack-notebook/Dockerfile b/jupyterhub/images/datastack-notebook/Dockerfile index a077c7b..e38814a 100644 --- a/jupyterhub/images/datastack-notebook/Dockerfile +++ b/jupyterhub/images/datastack-notebook/Dockerfile @@ -127,6 +127,7 @@ RUN mamba install --yes \ 'pyarrow' \ 'qdrant-client' \ 'rapidfuzz' \ + 'simple-salesforce' \ 'tensorflow' \ 'transformers' \ 'unstructured' \ diff --git a/jupyterhub/justfile b/jupyterhub/justfile index 41bb485..e68239b 100644 --- a/jupyterhub/justfile +++ b/jupyterhub/justfile @@ -9,7 +9,7 @@ export JUPYTERHUB_NFS_PV_ENABLED := env("JUPYTERHUB_NFS_PV_ENABLED", "") export JUPYTERHUB_STORAGE_CLASS := env("JUPYTERHUB_STORAGE_CLASS", "") export JUPYTERHUB_VAULT_INTEGRATION_ENABLED := env("JUPYTERHUB_VAULT_INTEGRATION_ENABLED", "") export JUPYTERHUB_AIRFLOW_DAGS_PERSISTENCE_ENABLED := env("JUPYTERHUB_AIRFLOW_DAGS_PERSISTENCE_ENABLED", "") -export JUPYTER_PYTHON_KERNEL_TAG := env("JUPYTER_PYTHON_KERNEL_TAG", "python-3.12-40") +export JUPYTER_PYTHON_KERNEL_TAG := env("JUPYTER_PYTHON_KERNEL_TAG", "python-3.12-41") export KERNEL_IMAGE_BUUN_STACK_REPOSITORY := env("KERNEL_IMAGE_BUUN_STACK_REPOSITORY", "buun-stack-notebook") export KERNEL_IMAGE_BUUN_STACK_CUDA_REPOSITORY := env("KERNEL_IMAGE_BUUN_STACK_CUDA_REPOSITORY", "buun-stack-cuda-notebook") export JUPYTER_PROFILE_MINIMAL_ENABLED := env("JUPYTER_PROFILE_MINIMAL_ENABLED", "false")