From 69440d0ba27338615af044204312684937e86e27 Mon Sep 17 00:00:00 2001 From: LG <76845820+im-coder-lg@users.noreply.github.com> Date: Fri, 13 Aug 2021 12:34:14 +0530 Subject: [PATCH 1/5] Revert "Add Gitpod Dockerfile and configuration" --- .gitpod.Dockerfile | 10 ---------- .gitpod.yml | 2 -- 2 files changed, 12 deletions(-) delete mode 100644 .gitpod.Dockerfile delete mode 100644 .gitpod.yml diff --git a/.gitpod.Dockerfile b/.gitpod.Dockerfile deleted file mode 100644 index f73b425..0000000 --- a/.gitpod.Dockerfile +++ /dev/null @@ -1,10 +0,0 @@ -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 deleted file mode 100644 index 6499bad..0000000 --- a/.gitpod.yml +++ /dev/null @@ -1,2 +0,0 @@ -image: - file: .gitpod.Dockerfile \ No newline at end of file From 251f68fe5b790b38dc514f5cb80b26129470ad6d Mon Sep 17 00:00:00 2001 From: Hex Date: Mon, 16 Aug 2021 04:01:51 +0000 Subject: [PATCH 2/5] Shell Script --- gitpodDockerfile.sh | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 gitpodDockerfile.sh diff --git a/gitpodDockerfile.sh b/gitpodDockerfile.sh new file mode 100644 index 0000000..22bebb6 --- /dev/null +++ b/gitpodDockerfile.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +npm i -g @codedoc/cli + +codedoc install + +codedoc serve \ No newline at end of file From 3f9754721cf958e669f23d6dec8d3d9e1bd3da4f Mon Sep 17 00:00:00 2001 From: Hex Date: Mon, 16 Aug 2021 04:02:29 +0000 Subject: [PATCH 3/5] Gitpod Config --- .gitpod.yml | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .gitpod.yml 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 From 0250952a62b8018815c212e101dee217b5537982 Mon Sep 17 00:00:00 2001 From: Hex Date: Mon, 16 Aug 2021 04:02:57 +0000 Subject: [PATCH 4/5] Gitpod Dockerfile --- .gitpod.Dockerfile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .gitpod.Dockerfile 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 From 92835c4381699296dfa6261b96242594d66c7316 Mon Sep 17 00:00:00 2001 From: Hex Date: Mon, 16 Aug 2021 04:03:43 +0000 Subject: [PATCH 5/5] Dockerfile changes --- .gitpod.Dockerfile | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/.gitpod.Dockerfile b/.gitpod.Dockerfile index f73b425..80d4d42 100644 --- a/.gitpod.Dockerfile +++ b/.gitpod.Dockerfile @@ -1,10 +1,13 @@ 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 + +RUN sh ./gitpodDockerfile.sh + +# 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