FROM node:22 RUN git clone --depth 1 https://github.com/tianzhentech/NeatChat WORKDIR "NeatChat" COPY . . RUN npm i && npm run build EXPOSE 3000 CMD ["npm", "run", "start"]