aboutsummaryrefslogtreecommitdiff
path: root/.devcontainer
diff options
context:
space:
mode:
authorValentin Popov <valentin@popov.link>2024-07-19 16:03:00 +0300
committerValentin Popov <valentin@popov.link>2024-07-19 16:08:46 +0300
commit12c7f0284e6c4a6c6975f9e3c40524c0fd4257ed (patch)
tree37525a447b088af2b54ba396c827ac7b3c33acf4 /.devcontainer
parent5c9a691495750ae5866903f088a95909df607c08 (diff)
downloadfparkan-12c7f0284e6c4a6c6975f9e3c40524c0fd4257ed.tar.xz
fparkan-12c7f0284e6c4a6c6975f9e3c40524c0fd4257ed.zip
Added DevContainer
Diffstat (limited to '.devcontainer')
-rw-r--r--.devcontainer/devcontainer.json15
1 files changed, 15 insertions, 0 deletions
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json
new file mode 100644
index 0000000..6cef205
--- /dev/null
+++ b/.devcontainer/devcontainer.json
@@ -0,0 +1,15 @@
+{
+ "image": "mcr.microsoft.com/devcontainers/rust:latest",
+ "customizations": {
+ "vscode": {
+ "extensions": [
+ "rust-lang.rust-analyzer"
+ ]
+ }
+ },
+ "runArgs": [
+ "--cap-add=SYS_PTRACE",
+ "--security-opt",
+ "seccomp=unconfined"
+ ]
+} \ No newline at end of file