From b36e5290343c0f795f9e32941aa29baac840ba28 Mon Sep 17 00:00:00 2001 From: Chuck Lantz Date: Wed, 22 May 2019 08:46:31 -0700 Subject: [PATCH] Set default shell, avoid dpkg and other stderr messages --- .devcontainer/Dockerfile | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index d8b0fa1..faeeb66 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -5,6 +5,11 @@ FROM golang:1 +# Configure apt +ENV DEBIAN_FRONTEND=noninteractive +RUN apt-get update \ + && apt-get -y install --no-install-recommends apt-utils 2>&1 + RUN go get -u -v \ github.com/mdempsky/gocode \ github.com/uudashr/gopkgs/cmd/gopkgs \ @@ -24,18 +29,21 @@ RUN go get -u -v \ github.com/derekparker/delve/cmd/dlv 2>&1 # gocode-gomod -RUN go get -x -d github.com/stamblerre/gocode \ +RUN go get -x -d github.com/stamblerre/gocode 2>&1 \ && go build -o gocode-gomod github.com/stamblerre/gocode \ && mv gocode-gomod $GOPATH/bin/ # Copy default endpoint specific user settings overrides into container to specify Go path COPY settings.vscode.json /root/.vscode-remote/data/Machine/settings.json -# Verify git, process tools installed -RUN apt-get update && apt-get -y install git procps +# Install git, process tools, lsb-release (common in install instructions for CLIs) +RUN apt-get -y install git procps lsb-release # Clean up RUN apt-get autoremove -y \ && apt-get clean -y \ && rm -rf /var/lib/apt/lists/* +ENV DEBIAN_FRONTEND=dialog +# Set the default shell to bash rather than sh +ENV SHELL /bin/bash