FROM node:22 RUN git clone --depth 1 https://github.com/tianzhentech/NeatChat WORKDIR "NeatChat" COPY . . RUN npm install \ && npm install next@^14 --save-exact \ && npm run build EXPOSE 3000 CMD ["npm", "run", "start"]