From c852b09cdf458fce987cab20be918449634a9581 Mon Sep 17 00:00:00 2001 From: John Dohoney <42818490+johndohoneyjr@users.noreply.github.com> Date: Fri, 3 Feb 2023 09:27:13 -0800 Subject: [PATCH] Create Dockerfile --- .devcontainer/Dockerfile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .devcontainer/Dockerfile diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile new file mode 100644 index 0000000..af1b81a --- /dev/null +++ b/.devcontainer/Dockerfile @@ -0,0 +1,10 @@ +# Using the azure CLI container so we dont have to install that to start +FROM mcr.microsoft.com/azure-cli + +RUN apk update + +# Install tools +RUN apk add nano vim tcpdump tmux jq curl + +RUN apk add zsh \ +&& sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"