7 lines
199 B
Docker
7 lines
199 B
Docker
FROM node:latest
|
|
LABEL description="ai-live-docs"
|
|
WORKDIR /
|
|
RUN npm config set registry https://registry.npmmirror.com
|
|
RUN npm install -g docsify-cli@latest
|
|
EXPOSE 3000/tcp
|
|
ENTRYPOINT docsify serve . |