diff --git a/docs/Dockerfile b/docs/Dockerfile new file mode 100644 index 0000000..cafb30f --- /dev/null +++ b/docs/Dockerfile @@ -0,0 +1,6 @@ +FROM node:13.1.0 +LABEL description="A project Dockerfile for build Docsify." +WORKDIR /docs +RUN npm install -g docsify-cli@latest +EXPOSE 3000/tcp +ENTRYPOINT docsify serve . \ No newline at end of file