blfm commited on
Commit
0fe02ea
·
verified ·
1 Parent(s): 4f562aa

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -0
Dockerfile ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ FROM node:22
2
+ RUN git clone --depth 1 https://github.com/tianzhentech/NeatChat
3
+ WORKDIR "NeatChat"
4
+ COPY . .
5
+ RUN npm i && npm run build
6
+ EXPOSE 3000
7
+ CMD ["npm", "run", "start"]