Skip to content

Instantly share code, notes, and snippets.

@Arclite
Created November 20, 2022 22:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Arclite/98cad47d37c24b8138dddeb8f01a7f04 to your computer and use it in GitHub Desktop.
Save Arclite/98cad47d37c24b8138dddeb8f01a7f04 to your computer and use it in GitHub Desktop.
Swift Dev Container
{
"name": "Swift",
"image": "swift:5.7",
"runArgs": [
"--cap-add=SYS_PTRACE",
"--security-opt",
"seccomp=unconfined"
],
"onCreateCommand": "apt update && apt install -y libpython3-dev python3-lldb && ln -s /usr/lib/llvm-14/lib/python3.10/dist-packages/lldb/* /usr/lib/python3/dist-packages/lldb/",
"settings": {
"lldb.library": "/usr/lib/liblldb.so"
},
"extensions": [
"sswg.swift-lang"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment