yangtb2024 commited on
Commit
421a38c
·
verified ·
1 Parent(s): 14b69c3

Delete Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -24
Dockerfile DELETED
@@ -1,24 +0,0 @@
1
- # Use the Node.js 18 base image
2
- FROM node:18
3
-
4
- # Clone the ChatGPT repository from GitHub
5
- RUN git clone https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web.git
6
-
7
- # Set the working directory inside the container
8
- WORKDIR "ChatGPT-Next-Web"
9
-
10
- # Install dependencies using npm
11
- RUN npm install
12
-
13
- # Build the project
14
- RUN npm run build
15
-
16
- # Define environment variables
17
- ENV CUSTOM_MODELS=-all,+01-ai/Yi-1.5-6B-Chat@OpenAI, +360gpt-pro@OpenAI, +360gpt-turbo@OpenAI, +Baichuan2-Turbo@OpenAI, +Baichuan3-Turbo@OpenAI, +Baichuan4@OpenAI, +Pro/google/gemma-2-9b-it@OpenAI, +Pro/meta-llama/Meta-Llama-3-8B-Instruct@OpenAI, +Pro/mistralai/Mistral-7B-Instruct-v0.2@OpenAI, +Qwen/Qwen1.5-7B-Chat@OpenAI, +Qwen/Qwen2-7B-Instruct@OpenAI, +THUDM/chatglm3-6b@OpenAI, +THUDM/glm-4-9b-chat@OpenAI, +claude-3-5-sonnet-20240620@OpenAI, +claude-3-haiku-20240307@OpenAI, +deepseek-ai/deepseek-v2-chat@OpenAI, +deepseek-chat@OpenAI, +deepseek-coder@OpenAI, +gemini-1.0-pro@OpenAI, +gemini-1.5-flash@OpenAI, +gemini-1.5-flash-exp-0827@OpenAI, +gemini-1.5-pro@OpenAI, +gemini-1.5-pro-exp-0801@OpenAI, +gemini-1.5-pro-exp-0827@OpenAI, +glm-3-turbo@OpenAI, +glm-4@OpenAI, +glm-4-air@OpenAI, +glm-4-airx@OpenAI, +glm-4-flash@OpenAI, +glm-4-long@OpenAI, +glm-4v@OpenAI, +gpt-3.5-turbo@OpenAI, +gpt-4o@OpenAI, +gpt-4o-2024-08-06@OpenAI, +gpt-4o-mini@OpenAI, +internlm/internlm2_5-7b-chat@OpenAI, +moonshot-v1-8k@OpenAI, +yi-large@OpenAI, +yi-large-rag@OpenAI, +yi-large-turbo@OpenAI, +yi-medium@OpenAI, +yi-medium-200k@OpenAI, +yi-spark@OpenAI, +yi-vision@OpenAI
18
-
19
- # Expose port 3000 for accessing the application
20
-
21
- EXPOSE 3000
22
-
23
- # Specify the command to run the application
24
- CMD ["npm", "run", "start"]