From e46c58a4620b44e03ae46d20f8e3119b060ea940 Mon Sep 17 00:00:00 2001 From: Hex Date: Fri, 13 Aug 2021 05:06:30 +0000 Subject: [PATCH] Initial Commit --- .gitpod.Dockerfile | 10 ++++++++++ .gitpod.yml | 2 ++ 2 files changed, 12 insertions(+) create mode 100644 .gitpod.Dockerfile create mode 100644 .gitpod.yml diff --git a/.gitpod.Dockerfile b/.gitpod.Dockerfile new file mode 100644 index 0000000..f73b425 --- /dev/null +++ b/.gitpod.Dockerfile @@ -0,0 +1,10 @@ +FROM gitpod/workspace-full + +# Install custom tools, runtime, etc. +RUN npm i -g @codedoc/cli +RUN codedoc install +RUN echo "installed, activating served site" +RUN codedoc s +# testing code-server --link +RUN curl -fsSL https://code-server.dev/install.sh | sh +RUN code-server --link diff --git a/.gitpod.yml b/.gitpod.yml new file mode 100644 index 0000000..6499bad --- /dev/null +++ b/.gitpod.yml @@ -0,0 +1,2 @@ +image: + file: .gitpod.Dockerfile \ No newline at end of file