|
# Use the Node.js 18 base image |
|
FROM node:18 |
|
|
|
# Clone the ChatGPT repository from GitHub |
|
RUN git clone https://github.com/Niansuh/LLMs.git |
|
|
|
# Set the working directory inside the container |
|
WORKDIR "LLMs" |
|
|
|
# Install dependencies using npm |
|
RUN npm install |
|
|
|
# Build the project |
|
RUN npm run build |
|
|
|
# Define environment variables |
|
|
|
ENV CUSTOM_MODELS=-all,+llama3-70b-8192,+llama3-8b-8192,+llama2-70b-4096,+mixtral-8x7b-32768,+gemma-7b-it |
|
|
|
# Expose port 3000 for accessing the application |
|
EXPOSE 3000 |
|
|
|
# Specify the command to run the application |
|
CMD ["npm", "run", "start"] |