blfm commited on
Commit
9afb7ca
·
verified ·
1 Parent(s): ebb24c7

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +11 -0
Dockerfile ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM node:22
2
+ RUN git clone --depth 1 https://github.com/tianzhentech/NeatChat
3
+ WORKDIR "NeatChat"
4
+ COPY . .
5
+ ENV HIDE_USER_API_KEY=1 \
6
+ DEFAULT_MODEL="gemini-2.0-flash-exp@Google"
7
+ RUN npm install \
8
+ && npm install next@^14 --save-exact \
9
+ && npm run build
10
+ EXPOSE 3000
11
+ CMD ["npm", "run", "start"]