From ebee22b58066d542b7ab2b6d3d80b7871e05876e Mon Sep 17 00:00:00 2001 From: James Brumond Date: Fri, 18 Aug 2023 18:23:04 -0700 Subject: [PATCH] create separate workspace dir --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 5193557..fce81d6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,4 +20,7 @@ RUN ln -s /doc-utils/node_modules/@doc-utils/jsonschema2markdown/bin/jsonschema2 RUN ln -s /doc-utils/node_modules/@doc-utils/markdown2html/bin/markdown2html /bin/markdown2html RUN ln -s /doc-utils/node_modules/@doc-utils/markdown2html/bin/strip-frontmatter /bin/strip-frontmatter +RUN mkdir /workspace +WORKDIR /workspace + ENTRYPOINT [ "/bin/bash", "-l", "-c" ]