python-launcher 0.15.0

The Python launcher for Unix
Documentation
// See https://aka.ms/vscode-remote/devcontainer.json for format details.
{
	"name": "Rust",
	"dockerFile": "Dockerfile",
	"runArgs": [
		"--cap-add=SYS_PTRACE",
		"--security-opt", "seccomp=unconfined"
	],

	// Uncomment the next line if you want to publish any ports.
	// "appPort": [],

	// Uncomment the next line to run commands after the container is created.
	"postCreateCommand": "cargo fetch",

	"extensions": [
		"rust-lang.rust",
		"bungcip.better-toml",
		"vadimcn.vscode-lldb"
	],
	"settings": {
		"lldb.executable": "/usr/bin/lldb-3.9"
	}
}