File size: 164 Bytes
eba44e7
b0fb228
7d5006a
eba44e7
 
 
 
 
1
2
3
4
5
6
7
8
FROM node:20
RUN git clone https://github.com/tianzhentech/NeatChat
WORKDIR "NeatChat"
COPY . .
RUN npm i 
RUN npm run build
EXPOSE 3000
CMD ["npm", "run", "start"]