mcp / Dockerfile
luohhhh's picture
Update Dockerfile
5b15ca3 verified
Raw
History Blame Contribute Delete
283 Bytes
FROM node:current-slim
WORKDIR /usr/src/app
RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
RUN git clone https://github.com/TypingMind/plugins-server/ .
RUN npm ci
RUN npm run build
RUN chown node:node /usr
EXPOSE 7860
CMD PORT=7860 npm run start