Updated with latest definition

This commit is contained in:
Chuck Lantz
2020-04-09 01:07:08 +00:00
parent 0d5aa6a6b0
commit b22a1139c9
3 changed files with 23 additions and 25 deletions

View File

@@ -21,14 +21,14 @@ RUN apt-get update \
&& apt-get -y install --no-install-recommends apt-utils dialog 2>&1 \
#
# Verify git, needed tools installed
&& apt-get -y install git iproute2 procps lsb-release \
&& apt-get -y install git openssh-client less iproute2 procps lsb-release \
#
# Install lldb, vadimcn.vscode-lldb VSCode extension dependencies
&& apt-get install -y lldb python3-minimal libpython3.7 \
#
# Install Rust components
&& rustup update \
&& rustup component add rls rust-analysis rust-src rustfmt clippy \
&& rustup update 2>&1 \
&& rustup component add rls rust-analysis rust-src rustfmt clippy 2>&1 \
#
# Create a non-root user to use if preferred - see https://aka.ms/vscode-remote/containers/non-root-user.
&& groupadd --gid $USER_GID $USERNAME \