This repository was archived by the owner on Nov 30, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed
containers/rust/.devcontainer Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -23,12 +23,12 @@ RUN apt-get update \
23
23
# Verify git, needed tools installed
24
24
&& apt-get -y install git iproute2 procps lsb-release \
25
25
#
26
- # Install other dependencies
27
- && apt-get install -y lldb \
26
+ # Install lldb, vadimcn.vscode-lldb VSCode extension dependencies
27
+ && apt-get install -y lldb python3-minimal libpython3.7 \
28
28
#
29
29
# Install Rust components
30
- && rustup update \
31
- && rustup component add rls rust-analysis rust-src rustfmt clippy \
30
+ && rustup update 2>&1 \
31
+ && rustup component add rls rust-analysis rust-src rustfmt clippy 2>&1 \
32
32
#
33
33
# Create a non-root user to use if preferred - see https://aka.ms/vscode-remote/containers/non-root-user.
34
34
&& groupadd --gid $USER_GID $USERNAME \
Original file line number Diff line number Diff line change 7
7
// You can edit these settings after create using File > Preferences > Settings > Remote.
8
8
"settings" : {
9
9
"terminal.integrated.shell.linux" : " /bin/bash" ,
10
- "lldb.adapterType" : " bundled" ,
11
10
"lldb.executable" : " /usr/bin/lldb"
12
11
},
13
12
You can’t perform that action at this time.
0 commit comments