Set default shell, avoid info messages being sent to stderr

This commit is contained in:
Chuck Lantz
2019-05-22 09:59:50 -07:00
parent 38a2e677a9
commit 95138e484a

View File

@@ -8,11 +8,16 @@ FROM rust:1
# Copy endpoint specific user setting overrides into container # Copy endpoint specific user setting overrides into container
COPY settings.vscode.json /root/.vscode-remote/data/Machine/settings.json COPY settings.vscode.json /root/.vscode-remote/data/Machine/settings.json
RUN rustup update RUN rustup update 2>&1
RUN rustup component add rls rust-analysis rust-src RUN rustup component add rls rust-analysis rust-src 2>&1
# Install git, process tools # Configure apt
RUN apt-get update && apt-get -y install git procps ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update \
&& apt-get -y install --no-install-recommends apt-utils 2>&1
# Install git, process tools, lsb-release (common in install instructions for CLIs)
RUN apt-get -y install git procps lsb-release
# Install other dependencies # Install other dependencies
RUN apt-get install -y lldb-3.9 RUN apt-get install -y lldb-3.9
@@ -21,3 +26,7 @@ RUN apt-get install -y lldb-3.9
RUN apt-get autoremove -y \ RUN apt-get autoremove -y \
&& apt-get clean -y \ && apt-get clean -y \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
ENV DEBIAN_FRONTEND=dialog
# Set the default shell to bash rather than sh
ENV SHELL /bin/bash