Move settings into new devcontainer.json property

This commit is contained in:
Chuck Lantz
2019-06-03 19:55:45 -07:00
parent 95138e484a
commit ca0ad479a0
3 changed files with 4 additions and 7 deletions

View File

@@ -5,9 +5,6 @@
FROM rust:1
# Copy endpoint specific user setting overrides into container
COPY settings.vscode.json /root/.vscode-remote/data/Machine/settings.json
RUN rustup update 2>&1
RUN rustup component add rls rust-analysis rust-src 2>&1

View File

@@ -10,5 +10,8 @@
"--cap-add=SYS_PTRACE",
"--security-opt",
"seccomp=unconfined"
]
],
"settings": {
"lldb.executable": "/usr/bin/lldb-3.9"
}
}

View File

@@ -1,3 +0,0 @@
{
"lldb.executable": "/usr/bin/lldb-3.9"
}