Skip to content

Commit dcb6637

Browse files
committed
1. better default values; 2 simplier urls
1 parent fc593a8 commit dcb6637

File tree

2 files changed

+19
-21
lines changed

2 files changed

+19
-21
lines changed

.github/workflows/build_images.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,11 @@ on:
99
repo:
1010
description: 'The leaf repository to build.'
1111
required: false
12-
default: https://github.com/legendu-net/docker-jupyterhub
12+
default: ''
1313
root_image_name:
1414
description: 'The name of the root Docker image in dependency resolving.'
1515
required: false
16+
default: ''
1617
jobs:
1718
build_docker_images:
1819
runs-on: ubuntu-latest

build_images.py

Lines changed: 17 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -6,33 +6,30 @@
66

77

88
REPOS = {
9-
"https://github.com/legendu-net/docker-gophernotes.git": "",
10-
"https://github.com/legendu-net/docker-rust-utils.git": "",
11-
"https://github.com/legendu-net/docker-rust-cicd.git": "",
12-
"https://github.com/legendu-net/docker-python-portable.git": "",
13-
"https://github.com/legendu-net/docker-vscode-server.git": "",
14-
"https://github.com/legendu-net/docker-gitpod.git": "",
15-
"https://github.com/legendu-net/docker-jupyterhub-pytorch.git": "",
16-
"https://github.com/legendu-net/docker-tensorboard.git": "",
17-
# "https://github.com/legendu-net/docker-conda-build.git": "",
18-
"https://github.com/legendu-net/docker-jupyterhub-kotlin.git": "",
19-
"https://github.com/legendu-net/docker-jupyterhub-ganymede.git": "",
20-
"https://github.com/legendu-net/docker-jupyterhub-sagemath.git": "",
21-
"https://github.com/legendu-net/docker-rustpython.git": "",
22-
# "https://github.com/legendu-net/docker-pypy.git": "",
23-
# "https://github.com/legendu-net/docker-jupyterhub-julia.git": "",
9+
"https://github.com/legendu-net/docker-gophernotes": "",
10+
"https://github.com/legendu-net/docker-rust-utils": "",
11+
"https://github.com/legendu-net/docker-rust-cicd": "",
12+
"https://github.com/legendu-net/docker-python-portable": "",
13+
"https://github.com/legendu-net/docker-vscode-server": "",
14+
"https://github.com/legendu-net/docker-gitpod": "",
15+
"https://github.com/legendu-net/docker-jupyterhub-pytorch": "",
16+
"https://github.com/legendu-net/docker-tensorboard": "",
17+
# "https://github.com/legendu-net/docker-conda-build": "",
18+
"https://github.com/legendu-net/docker-jupyterhub-kotlin": "",
19+
"https://github.com/legendu-net/docker-jupyterhub-ganymede": "",
20+
"https://github.com/legendu-net/docker-jupyterhub-sagemath": "",
21+
"https://github.com/legendu-net/docker-rustpython": "",
22+
# "https://github.com/legendu-net/docker-pypy": "",
23+
# "https://github.com/legendu-net/docker-jupyterhub-julia": "",
2424
}
2525
BRANCH_URLS = {
2626
"main": REPOS,
2727
"dev": REPOS,
28-
"blog": {
29-
# "https://github.com/legendu-net/docker-gitpod.git": "",
30-
},
3128
"rust_nightly": {
32-
# "https://github.com/legendu-net/docker-rust-utils.git": "",
29+
# "https://github.com/legendu-net/docker-rust-utils": "",
3330
},
3431
"4.0": {
35-
"https://github.com/dclong/docker-jupyterhub.git": "",
32+
"https://github.com/legendu-net/docker-jupyterhub": "",
3633
},
3734
}
3835

0 commit comments

Comments
 (0)