mirror of
https://github.com/Estom/notes.git
synced 2026-02-02 18:20:20 +08:00
6 lines
140 B
Docker
6 lines
140 B
Docker
FROM node:20-alpine
|
|
RUN npm install -g docsify-cli@latest
|
|
WORKDIR /docs
|
|
COPY . .
|
|
EXPOSE 3000
|
|
CMD ["docsify", "serve", ".", "--port", "3000"] |