Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +3 -3
Dockerfile
CHANGED
@@ -2,10 +2,10 @@
|
|
2 |
FROM node:18
|
3 |
|
4 |
# Clone the ChatGPT repository from GitHub
|
5 |
-
RUN git clone https://github.com/
|
6 |
|
7 |
# Set the working directory inside the container
|
8 |
-
WORKDIR "ChatGPT-Next-Web
|
9 |
|
10 |
# Install dependencies using npm
|
11 |
RUN npm install
|
@@ -14,7 +14,7 @@ RUN npm install
|
|
14 |
RUN npm run build
|
15 |
|
16 |
# Define environment variables
|
17 |
-
ENV CUSTOM_MODELS=-all,+
|
18 |
|
19 |
# Expose port 3000 for accessing the application
|
20 |
|
|
|
2 |
FROM node:18
|
3 |
|
4 |
# Clone the ChatGPT repository from GitHub
|
5 |
+
RUN git clone https://github.com/Niansuh/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
|
|
|
14 |
RUN npm run build
|
15 |
|
16 |
# Define environment variables
|
17 |
+
ENV CUSTOM_MODELS=-all,+gpt-3.5-turbo@GPT-CHATBOT.ru,+gpt-4o@GPT-CHATBOT.ru,[email protected],[email protected],[email protected],[email protected],[email protected]
|
18 |
|
19 |
# Expose port 3000 for accessing the application
|
20 |
|