blfm commited on
Commit
eba44e7
·
verified ·
1 Parent(s): 4e8401a

Create Dockerfile

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