File size: 227 Bytes
9afb7ca
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
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"]