aboutsummaryrefslogtreecommitdiff
path: root/.devcontainer/Dockerfile
diff options
context:
space:
mode:
authorKevin J Hoerr <kjhoerr@protonmail.com>2021-09-20 23:08:50 +0000
committerKevin J Hoerr <kjhoerr@protonmail.com>2021-09-20 23:08:50 +0000
commit49373b9b516fbb4aaa69376d4c8705fdfa633fa0 (patch)
tree1812a66836cfaea85420f15d236e7bc0dafdf332 /.devcontainer/Dockerfile
parent22af0d845e56615b216457111524e3a268d2a526 (diff)
downloadao-coverage-49373b9b516fbb4aaa69376d4c8705fdfa633fa0.tar.gz
ao-coverage-49373b9b516fbb4aaa69376d4c8705fdfa633fa0.tar.bz2
ao-coverage-49373b9b516fbb4aaa69376d4c8705fdfa633fa0.zip
Last .devcontainer changes
- Copy over more RC changes - Copy over Microsoft's license and copyright for brevity - Change container names
Diffstat (limited to '.devcontainer/Dockerfile')
-rw-r--r--.devcontainer/Dockerfile3
1 files changed, 2 insertions, 1 deletions
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