-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-config.toml
More file actions
66 lines (55 loc) · 1.37 KB
/
docker-config.toml
File metadata and controls
66 lines (55 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[py312_trixie]
command = "uv run curioso"
os_name = "python:3.12-slim-trixie"
os_commands = []
pkg_manager = "apt"
[py311_slim]
command = "uv run curioso"
os_name = "python:3.11-slim"
os_commands = []
pkg_manager = "apt"
[py310_slim]
command = "uv run curioso"
os_name = "python:3.10-slim"
os_commands = []
pkg_manager = "apt"
[debian_bookworm]
command = "uv run curioso"
os_name = "debian:bookworm-slim"
os_commands = ["apt-get update && apt-get install -y ca-certificates"]
pkg_manager = "apt"
[debian_bullseye]
command = "uv run curioso"
os_name = "debian:bullseye-slim"
os_commands = ["apt-get update && apt-get install -y ca-certificates"]
pkg_manager = "apt"
[ubuntu_latest]
command = "uv run curioso"
os_name = "ubuntu:latest"
os_commands = ["apt-get update && apt-get install -y ca-certificates"]
pkg_manager = "apt"
[ubuntu_20]
command = "uv run curioso"
os_name = "ubuntu:20.04"
os_commands = ["apt-get update && apt-get install -y ca-certificates"]
pkg_manager = "apt"
[ubuntu_22]
command = "uv run curioso"
os_name = "ubuntu:22.04"
os_commands = []
pkg_manager = "apt"
[alpine_latest]
command = "uv run curioso"
os_name = "alpine:latest"
os_commands = []
pkg_manager = "apk"
[alpine_3_18]
command = "uv run curioso"
os_name = "alpine:3.19"
os_commands = []
pkg_manager = "apk"
[alpine_3_17]
command = "uv run curioso"
os_name = "alpine:3.17"
os_commands = []
pkg_manager = "apk"