* MRVA VS Code server container On the host: #+BEGIN_SRC sh # Build the container via cd ~/work-gh/mrva/mrvacommander/client/containers/vscode/ docker build -t code-server-initialized:0.1.24 . # Run the container in standalone mode via cd ~/work-gh/mrva/mrvacommander/client/containers/vscode/ docker run -v ~/work-gh/mrva/vscode-codeql:/work-gh/mrva/vscode-codeql \ -d -p 9080:9080 code-server-initialized:0.1.24 #+END_SRC - Connect to it at http://localhost:9080/?folder=/home/coder, password is =mrva=. Inside the container: - Setup inside the container #+BEGIN_SRC shell cd export PATH=/opt/codeql:$PATH codeql pack init qldemo cd qldemo codeql pack add codeql/python-all@1.0.6 #+END_SRC - Create a new file =qldemo/simple.ql= with this query. Open it in VS Code. The plugin will download the CodeQL binaries (but never use them -- the configuration redirects) #+BEGIN_SRC sh cd cat > qldemo/simple.ql < short.py <