-
Notifications
You must be signed in to change notification settings - Fork 620
Expand file tree
/
Copy pathscenarios.json
More file actions
65 lines (65 loc) · 1.71 KB
/
Copy pathscenarios.json
File metadata and controls
65 lines (65 loc) · 1.71 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
{
"install_ruby_trixie_base": {
"build": {
"dockerfile": "Dockerfile"
},
"features": {
"ghcr.io/devcontainers/features/common-utils:2": {
"installZsh": "true",
"username": "vscode",
"userUid": "1000",
"userGid": "1000",
"upgradePackages": "true"
},
"ruby": "none",
"ghcr.io/devcontainers/features/node:1": "none",
"ghcr.io/devcontainers/features/git:1": {
"version": "latest",
"ppa": "false"
}
},
"remoteUser": "vscode"
},
"install_additional_ruby_trixie": {
"image": "debian:trixie",
"features": {
"ruby": {
"version": "3.4.2",
"additionalVersions": "3.2,3.3.2"
}
}
},
"install_additional_ruby": {
"image": "ubuntu:noble",
"features": {
"ruby": {
"version": "3.4.2",
"additionalVersions": "3.2,3.3.2"
}
}
},
"ruby_debian": {
"image": "mcr.microsoft.com/devcontainers/base:bookworm",
"features": {
"ruby": {}
}
},
"ruby_rbenv": {
"image": "mcr.microsoft.com/devcontainers/base:noble",
"features": {
"ruby": {
"version": "3.4.2",
"versionManager": "rbenv"
}
}
},
"ruby_rvm": {
"image": "mcr.microsoft.com/devcontainers/base:bookworm",
"features": {
"ruby": {
"version": "3.4.2",
"versionManager": "rvm"
}
}
}
}