From a46a2299feb0a6253ab2762e4f3c8c858d5c78f6 Mon Sep 17 00:00:00 2001
From: Rhys Arkins <rhys@arkins.net>
Date: Thu, 14 Oct 2021 13:24:37 +0200
Subject: [PATCH] chore: fix dev container permissions (#12165)

---
 .devcontainer/devcontainer.json | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json
index 211a87a8f1..8f0561e667 100644
--- a/.devcontainer/devcontainer.json
+++ b/.devcontainer/devcontainer.json
@@ -9,5 +9,11 @@
     "esbenp.prettier-vscode",
     "orta.vscode-jest"
   ],
+  "runArgs": [
+    "--cap-add=SYS_PTRACE",
+    "--security-opt",
+    "seccomp=unconfined",
+    "--privileged"
+  ],
   "postCreateCommand": "yarn install"
 }
-- 
GitLab