Update Dockerfile
Browse files- Dockerfile +3 -2
Dockerfile
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
FROM node:18
|
3 |
|
4 |
# Clone the ChatGPT repository from GitHub
|
5 |
-
RUN git clone -b
|
6 |
|
7 |
# Set the working directory inside the container
|
8 |
WORKDIR "LLMs"
|
@@ -14,7 +14,8 @@ RUN npm install
|
|
14 |
RUN npm run build
|
15 |
|
16 |
# Define environment variables
|
17 |
-
|
|
|
18 |
|
19 |
# Expose port 3000 for accessing the application
|
20 |
EXPOSE 3000
|
|
|
2 |
FROM node:18
|
3 |
|
4 |
# Clone the ChatGPT repository from GitHub
|
5 |
+
RUN git clone -b GPT https://github.com/Niansuh/LLMs.git
|
6 |
|
7 |
# Set the working directory inside the container
|
8 |
WORKDIR "LLMs"
|
|
|
14 |
RUN npm run build
|
15 |
|
16 |
# Define environment variables
|
17 |
+
|
18 |
+
ENV CUSTOM_MODELS=-all,+gpt-3.5-turbo
|
19 |
|
20 |
# Expose port 3000 for accessing the application
|
21 |
EXPOSE 3000
|