dongsiqie commited on
Commit
5f8b86e
·
1 Parent(s): 4081f95

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -1,9 +1,9 @@
1
  FROM node:18
2
- RUN git clone https://github.com/weaigc/bingo.git
3
- WORKDIR "bingo"
4
  RUN npm i # 推荐使用 pnpm i
5
  RUN npm run build
6
  # 设置环境变量,此处为随机字符
7
- ENV IMAGE_BING_COOKIE="kJs8hD92ncMzLaoQWYtX5rG6bE3fZ4iO2qie2d"
8
  EXPOSE 3000
9
  CMD ["npm", "run", "start"]
 
1
  FROM node:18
2
+ RUN git clone https://github.com/Yidadaa/ChatGPT-Next-Web.git
3
+ WORKDIR "ChatGPT-Next-Web"
4
  RUN npm i # 推荐使用 pnpm i
5
  RUN npm run build
6
  # 设置环境变量,此处为随机字符
7
+ ENV BASE_URL="https://ai.fakeopen.com"
8
  EXPOSE 3000
9
  CMD ["npm", "run", "start"]