Skip to content

Commit f8879d9

Browse files
authored
Update custom recipes versions (#2276)
1 parent e0bb88c commit f8879d9

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

docs/using/custom-images.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ FROM $BASE_IMAGE
5757

5858
Include the file below in your project:
5959

60-
```{literalinclude} recipe_code/docker-bake.python312.hcl
60+
```{literalinclude} recipe_code/docker-bake.custom-python.hcl
6161
:force:
6262
:language: hcl
6363
:caption: docker-bake.hcl

docs/using/recipe_code/custom_environment.dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ ARG BASE_IMAGE=quay.io/jupyter/minimal-notebook
22
FROM $BASE_IMAGE
33

44
# Name your environment and choose the Python version
5-
ARG env_name=python310
6-
ARG py_ver=3.10
5+
ARG env_name=python313
6+
ARG py_ver=3.13
77

88
# You can add additional libraries here
99
RUN mamba create --yes -p "${CONDA_DIR}/envs/${env_name}" \

docs/using/recipe_code/docker-bake.python312.hcl renamed to docs/using/recipe_code/docker-bake.custom-python.hcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ group "default" {
55
target "foundation" {
66
context = "https://github.com/jupyter/docker-stacks.git#main:images/docker-stacks-foundation"
77
args = {
8-
PYTHON_VERSION = "3.12"
8+
PYTHON_VERSION = "3.13"
99
}
1010
tags = ["docker-stacks-foundation"]
1111
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ARG BASE_IMAGE=quay.io/jupyter/base-notebook
22
FROM $BASE_IMAGE
33

4-
RUN mamba install --yes 'jupyterhub-singleuser==4.0.1' && \
4+
RUN mamba install --yes 'jupyterhub-singleuser==5.2.1' && \
55
mamba clean --all -f -y && \
66
fix-permissions "${CONDA_DIR}" && \
77
fix-permissions "/home/${NB_USER}"

0 commit comments

Comments
 (0)