Skip to content
Merged
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
4 changes: 2 additions & 2 deletions README-ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ sudo npm install -g yarn
sudo modprobe fuse

# pull the repo2docker image
sudo docker pull gcr.io/nii-ap-ops/repo2docker:2025.12.0
sudo docker pull gcr.io/nii-ap-ops/rdmfs:2025.10.0
sudo docker pull gcr.io/nii-ap-ops/repo2docker:2026.02.0
sudo docker pull gcr.io/nii-ap-ops/rdmfs:2026.02.1

# install TLJH 1.0
curl -L https://tljh.jupyter.org/bootstrap.py \
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ sudo npm install -g yarn
sudo modprobe fuse

# pull the repo2docker image
sudo docker pull gcr.io/nii-ap-ops/repo2docker:2025.12.0
sudo docker pull gcr.io/nii-ap-ops/rdmfs:2025.10.0
sudo docker pull gcr.io/nii-ap-ops/repo2docker:2026.02.0
sudo docker pull gcr.io/nii-ap-ops/rdmfs:2026.02.1

# install TLJH 1.0
curl -L https://tljh.jupyter.org/bootstrap.py \
Expand Down
4 changes: 2 additions & 2 deletions dev-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
git+https://github.com/jupyterhub/the-littlest-jupyterhub@1.0.0
git+https://github.com/RCOSDP/CS-binderhub.git@2025.11.0
git+https://github.com/RCOSDP/CS-repo2docker.git@2025.10.0
git+https://github.com/RCOSDP/CS-binderhub.git@2026.02.0
git+https://github.com/RCOSDP/CS-repo2docker.git@2026.02.0
jupyterhub>=4
alembic>=1.13.0,<1.14
pytest
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ dependencies = [
"sqlalchemy>=2",
"pydantic>=2,<3",
"alembic>=1.13,<2",
"jupyter-repo2docker @ git+https://github.com/RCOSDP/CS-repo2docker.git@2025.10.0",
"jupyter-repo2docker @ git+https://github.com/RCOSDP/CS-repo2docker.git@2026.02.0",
"aiosqlite~=0.19.0",
]
dynamic = ["version"]
Expand Down
2 changes: 1 addition & 1 deletion tljh_repo2docker/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ async def create_rdmfs_object(self, env):
Privileged=True,
)
create_kwargs = dict(
Image='gcr.io/nii-ap-ops/rdmfs:2025.10.0',
Image='gcr.io/nii-ap-ops/rdmfs:2026.02.1',
Env=[f'{k}={v}' for k, v in env.items()],
AutoRemove=True,
HostConfig=host_config,
Expand Down
2 changes: 1 addition & 1 deletion tljh_repo2docker/launcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ async def get(self, provider_prefix):
await build_image(
repo, ref, '', memory, cpu, username, password, [],
default_image_name=image_name,
repo2docker_image='gcr.io/nii-ap-ops/repo2docker:2025.12.0',
repo2docker_image='gcr.io/nii-ap-ops/repo2docker:2026.02.0',
optional_envs=provider.get_optional_envs(access_token=repo_token),
optional_labels=optional_labels,
)
Expand Down
Loading