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 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