From 49373b9b516fbb4aaa69376d4c8705fdfa633fa0 Mon Sep 17 00:00:00 2001 From: Kevin J Hoerr Date: Mon, 20 Sep 2021 23:08:50 +0000 Subject: Last .devcontainer changes - Copy over more RC changes - Copy over Microsoft's license and copyright for brevity - Change container names --- .devcontainer/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to '.devcontainer/Dockerfile') diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index eae9427..0c2907b 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -4,9 +4,10 @@ FROM ubuntu:bionic # Install needed packages, yarn, nvm and setup non-root user RUN groupadd --gid 1000 node \ && useradd --uid 1000 --gid node --shell /bin/bash --create-home node +ARG INSTALL_ZSH=false COPY node.sh ./ RUN chmod +x ./node.sh -RUN ./node.sh +RUN ./node.sh $INSTALL_ZSH # Install MongoDB command line tools ARG MONGO_TOOLS_VERSION=4.2 -- cgit