Updates for 1.41
This commit is contained in:
@@ -5,7 +5,10 @@
|
||||
|
||||
FROM rust:1
|
||||
|
||||
# Or your actual UID, GID on Linux if not the default 1000
|
||||
# This Dockerfile adds a non-root user with sudo access. Use the "remoteUser"
|
||||
# property in devcontainer.json to use it. On Linux, the container user's GID/UIDs
|
||||
# will be updated to match your local UID/GID (when using the dockerFile property).
|
||||
# See https://aka.ms/vscode-remote/containers/non-root-user for details.
|
||||
ARG USERNAME=vscode
|
||||
ARG USER_UID=1000
|
||||
ARG USER_GID=$USER_UID
|
||||
@@ -18,10 +21,10 @@ 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 procps lsb-release \
|
||||
&& apt-get -y install git iproute2 procps lsb-release \
|
||||
#
|
||||
# Install other dependencies
|
||||
&& apt-get install -y lldb \
|
||||
# Install lldb, vadimcn.vscode-lldb VSCode extension dependencies
|
||||
&& apt-get install -y lldb python3-minimal libpython3.7 \
|
||||
#
|
||||
# Install Rust components
|
||||
&& rustup update \
|
||||
@@ -30,9 +33,9 @@ RUN apt-get update \
|
||||
# Create a non-root user to use if preferred - see https://aka.ms/vscode-remote/containers/non-root-user.
|
||||
&& groupadd --gid $USER_GID $USERNAME \
|
||||
&& useradd -s /bin/bash --uid $USER_UID --gid $USER_GID -m $USERNAME \
|
||||
# [Optional] Add sudo support for non-root user
|
||||
# [Optional] Add sudo support for the non-root user
|
||||
&& apt-get install -y sudo \
|
||||
&& echo $USERNAME ALL=\(root\) NOPASSWD:ALL > /etc/sudoers.d/$USERNAME \
|
||||
&& echo $USERNAME ALL=\(root\) NOPASSWD:ALL > /etc/sudoers.d/$USERNAME\
|
||||
&& chmod 0440 /etc/sudoers.d/$USERNAME \
|
||||
#
|
||||
# Clean up
|
||||
@@ -41,4 +44,4 @@ RUN apt-get update \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
# Switch back to dialog for any ad-hoc use of apt-get
|
||||
ENV DEBIAN_FRONTEND=
|
||||
ENV DEBIAN_FRONTEND=dialog
|
||||
|
||||
Reference in New Issue
Block a user