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