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