FROM node:18-alpine WORKDIR /app RUN npm install -g docsify-cli COPY . . EXPOSE 3000 CMD ["docsify", "serve", ".","-p", "3000"]