Skip to content

Commit 15a8e0b

Browse files
committed
1. do not build dclong/gitpod any more; manage the python script using uv
1 parent a580292 commit 15a8e0b

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

build_images.py

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
#!/usr/bin/env python3
1+
#!/usr/bin/env -S uv run
2+
# /// script
3+
# requires-python = ">=3.13"
4+
# dependencies = [
5+
# "dockeree",
6+
# ]
7+
# ///
28
"""Python script for building Docker images via GitHub Actions.
39
"""
410
from argparse import ArgumentParser, Namespace
@@ -11,7 +17,7 @@
1117
"https://github.com/legendu-net/docker-rust-cicd": "",
1218
"https://github.com/legendu-net/docker-python-portable": "",
1319
"https://github.com/legendu-net/docker-vscode-server": "",
14-
"https://github.com/legendu-net/docker-gitpod": "",
20+
# "https://github.com/legendu-net/docker-gitpod": "",
1521
"https://github.com/legendu-net/docker-jupyterhub-pytorch": "",
1622
"https://github.com/legendu-net/docker-tensorboard": "",
1723
# "https://github.com/legendu-net/docker-conda-build": "",
@@ -73,3 +79,4 @@ def main() -> None:
7379

7480
if __name__ == "__main__":
7581
main()
82+

0 commit comments

Comments
 (0)