Skip to content
This repository was archived by the owner on Nov 30, 2023. It is now read-only.

Commit fa0f861

Browse files
committed
Update container dependencies for LLDB extension, avoid red in output
1 parent bdfd459 commit fa0f861

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

containers/rust/.devcontainer/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ RUN apt-get update \
2323
# Verify git, needed tools installed
2424
&& apt-get -y install git iproute2 procps lsb-release \
2525
#
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 \
2828
#
2929
# 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 \
3232
#
3333
# Create a non-root user to use if preferred - see https://aka.ms/vscode-remote/containers/non-root-user.
3434
&& groupadd --gid $USER_GID $USERNAME \

containers/rust/.devcontainer/devcontainer.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
// You can edit these settings after create using File > Preferences > Settings > Remote.
88
"settings": {
99
"terminal.integrated.shell.linux": "/bin/bash",
10-
"lldb.adapterType": "bundled",
1110
"lldb.executable": "/usr/bin/lldb"
1211
},
1312

0 commit comments

Comments
 (0)