Niansuh commited on
Commit
038cdf6
·
verified ·
1 Parent(s): 0c471e0

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -5
Dockerfile CHANGED
@@ -2,7 +2,7 @@
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"
@@ -13,10 +13,6 @@ RUN npm install
13
  # Build the project
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
22
 
 
2
  FROM node:18
3
 
4
  # Clone the ChatGPT repository from GitHub
5
+ RUN git clone https://github.com/Niansuh/LLMs.git
6
 
7
  # Set the working directory inside the container
8
  WORKDIR "LLMs"
 
13
  # Build the project
14
  RUN npm run build
15
 
 
 
 
 
16
  # Expose port 3000 for accessing the application
17
  EXPOSE 3000
18