-
-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathdevcontainer.json
More file actions
33 lines (33 loc) · 883 Bytes
/
devcontainer.json
File metadata and controls
33 lines (33 loc) · 883 Bytes
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
{
"name": "Swift 6.1-Ubuntu 24.04",
"image": "swift:6.1-noble",
"features": {
"ghcr.io/devcontainers/features/common-utils:2": {
"installZsh": "false",
"upgradePackages": "false"
},
"ghcr.io/devcontainers/features/git:1": {
"version": "os-provided",
"ppa": "false"
}
},
"runArgs": [
"--cap-add=SYS_PTRACE",
"--security-opt",
"seccomp=unconfined"
],
"customizations": {
"vscode": {
"settings": {
"lldb.library": "/usr/lib/liblldb.so"
},
"extensions": [
"swiftlang.swift-vscode",
"vadimcn.vscode-lldb",
"eamodio.gitlens",
"github.vscode-github-actions"
]
}
},
"postCreateCommand": "swift --version"
}